摘要: #include <iostream> class Add { public: int operator()(int a, int b) { std::cout << "operator()" << std::endl; return a + b; } }; int main() { using n 阅读全文
posted @ 2022-06-29 12:00 thomas_blog 阅读(25) 评论(0) 推荐(0)