摘要:
// from c++11 standardnamespace std { template <class T, T v> struct integral_constant { static constexpr T value = v; typedef T value_type; typedef i 阅读全文
摘要:
当一个数据类型满足了”平凡的定义“和”标准布局“,我们则认为它是一个POD数据,非静态成员都是”平凡的“ 1.平凡的 2.平凡的 3.非静态成员“平凡的” 阅读全文
摘要:
void swap (string& x, string& y); #include <iostream>#include <string.h> using namespace std; int main(){ string buyer("money"); string seller("goods" 阅读全文
摘要:
(1) istream& getline (istream& is, string& str, char delim); istream& getline (istream&& is, string& str, char delim); (2) istream& getline (istream& 阅读全文