C++知识点整理
本文记录下C++一些可能因太久没写被忽略的知识点,内容基于《C++ Primer》。
补充
速查
string str;
getline(cin,str); // 读入一整行,包括空格
cin.ignore(); // 忽略行尾\n
Reference
- C++ Reference, http://www.cplusplus.com/reference/
- C++ Google Style, https://google.github.io/styleguide/cppguide.html