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) 编辑