【STL】 20 内建函数对象

【STL】 20 内建函数对象

【STL】 20 内建函数对象

【STL】 20 内建函数对象

【STL】 20 内建函数对象

 

#include<iostream>
#include<functional>
using namespace std;

void test01(){
    plus<int> p;
    cout<<p(1,2)<<endl;
}

int main(){
    test01();
    return 0;
}

相关文章: