1 引用包装器
2 仿函数
3 转义字符
4 using别名
5 模板元编程
6 智能指针
7 多线程
8 静态断言以及调试技能的要求
1 引用包装器
std::ref(变量),函数模板直接引用
1 #include <iostream> 2 using namespace std; 3 4 template <class T> 5 void com(T arg)//母版函数,引用无效 6 { 7 std::cout << "com==" << &arg << std::endl; 8 arg++; 9 } 10 11 void main() 12 { 13 int count(10); 14 int &rcount(count); 15 std::cout << "main==" << &count << std::endl; 16 17 //std::ref(变量),函数模板直接引用 18 com(std::ref(count));//引用包装器 19 20 cout << count;//11 21 22 system("pause"); 23 }
2 仿函数
3 转义字符
4 using别名
5 模板元编程
6 智能指针
7 多线程
8 静态断言以及调试技能的要求
时间: 2024-10-18 02:12:38