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