yang131

导航

2020年8月27日 #

c++17 auto非类型模板参数

摘要: //用auto非类型模板参数 #include <iostream> using namespace std; template<auto c> auto foot() { cout << c << endl; return c; } int main4() { foot<312>(); int m 阅读全文

posted @ 2020-08-27 11:12 NoNight 阅读(555) 评论(0) 推荐(0) 编辑

c++17 using继承所有构造函数

摘要: //使用using继承所有的构造函数 #include "tmp.h" #include <iostream> using namespace std; struct P1 { P1() { cout << "p1" << endl; }; //error //P1(int m) = default 阅读全文

posted @ 2020-08-27 11:07 NoNight 阅读(654) 评论(0) 推荐(0) 编辑

c++17 structure binding test

摘要: 1 /*test for struct binding*/ 2 3 #include <string> 4 #include <iostream> 5 using namespace std; 6 //命名空间 可以缩写为A::B 7 namespace NA::NB 8 { 9 class Dat 阅读全文

posted @ 2020-08-27 11:05 NoNight 阅读(280) 评论(0) 推荐(0) 编辑