함수 객체(function object, fonctor) class Plus{public:int operator()(int a, int b){return a + b; }};경int main(){Plus p;cout