Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yanghan234/cppprimernotes
My reading notes of C++ Primer, 5th Edition
https://github.com/yanghan234/cppprimernotes
Last synced: 1 day ago
JSON representation
My reading notes of C++ Primer, 5th Edition
- Host: GitHub
- URL: https://github.com/yanghan234/cppprimernotes
- Owner: yanghan234
- Created: 2020-11-14T16:39:06.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-19T04:06:41.000Z (about 4 years ago)
- Last Synced: 2024-04-06T08:24:02.866Z (9 months ago)
- Language: HTML
- Size: 92.8 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CppPrimerNotes
This repository contains my reading notes of *C++ Primer*, 5th edition.
For myself: Log in to [InformIT](https://www.informit.com/) to fetch latest pdf of the book.Todo list
- [ ] Chapter 01: Getting started
- [ ] Chapter 02: Variables and basic types
- [ ] Chapter 03: Strings, vectors and arrays
- [ ] Chapter 04: Expressions
- [ ] Chapter 05: Statements
- [x] Chapter 06: Functions
- [x] Chapter 07: Classes
- [x] Chapter 08: The IO library
- [x] Chapter 09: Sequential containers
- [x] Chapter 10: Generic algorithms
- [x] Chapter 11: Associative containers
- [x] Chapter 12: Dynamic memory
- [x] Chapter 13: Copy control
- [ ] Chapter 14: Overloaded operators
- [x] Chapter 15: Object-oriented programming
- [x] Chapter 16: Templates and generic programmingAdvanced topics: I only finished reading some parts in the following chapters. I have to go back to those topics when I have more experience.
- [ ] Chapter 17: Specialized library facilities
- [ ] Chapter 18: Tools for large programs
- [ ] Chapter 19: Specialized tools and techniques