https://github.com/izhanghui/cppprimer
:books: C++ Primer 5th
https://github.com/izhanghui/cppprimer
cplusplus-11 cplusplus-14
Last synced: 2 months ago
JSON representation
:books: C++ Primer 5th
- Host: GitHub
- URL: https://github.com/izhanghui/cppprimer
- Owner: iZhangHui
- License: unlicense
- Created: 2016-09-23T05:31:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-10-09T03:26:35.000Z (over 5 years ago)
- Last Synced: 2025-03-24T02:51:31.551Z (3 months ago)
- Topics: cplusplus-11, cplusplus-14
- Language: C++
- Homepage:
- Size: 416 KB
- Stars: 29
- Watchers: 2
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## C++ Primer - 5th Edition
[](https://travis-ci.org/iZhangHui/CppPrimer)
=========================## Compilers recommended
- Ubuntu LTS 16.04.
- Use `g++ 5.4`, `clang++ 3.8`.
- Use `-std=c++14`(recommend: `-pedantic -Wall`) flag for compiling.## Contents
- [Chapter 1. Getting Started]()
- Part I: The Basics
- [Chapter 2. Variables and Basic Types]()
- [Chapter 3. Strings, Vectors, and Arrays]()
- [Chapter 4. Expressions]()
- [Chapter 5. Statements]()
- [Chapter 6. Functions]()
- [Chapter 7. Classes]()
- Part II: The C++ Library
- [Chapter 8. The IO Library]()
- [Chapter 9. Sequential Containers]()
- [Chapter 10. Generic Algorithms]()
- [Chapter 11. Associative Containers]()
- [Chapter 12. Dynamic Memory]()
- Part III: Tools for Class Authors
- [Chapter 13. Copy Control]()
- [Chapter 14. Overloaded Operations and Conversions]()
- [Chapter 15. Object-Oriented Programming]()
- [Chapter 16. Templates and Generic Programming]()
- Part IV: Advanced Topics
- [Chapter 17. Specialized Library Facilities]()
- [Chapter 18. Tools for Large Programs]()
- [Chapter 19. Specialized Tools and Techniques]()