1. 首页
  2. 数据库
  3. 其它
  4. STL中常用的C++语法

STL中常用的C++语法

上传者: 2021-01-29 14:52:00上传 PDF文件 36.36KB 热度 15次
函数调用操作(c++语法中的左右小括号)可以被重载,STL的特殊版本都以仿函数形式呈现。如果对某个class进行operator()重载,它成为一个仿函数。 #include using namespace std; template struct Plus { T operator()(const T& x, const T& y)const { return x + y; } }; template struct Minus { T operator()(const T& x, const T& y)co
用户评论