作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我尝试构建一个最小的示例:
struct Functor
{
void operator()(int& a)
{
a += 1;
}
void other(int& a)
{
a += 2;
}
};
template <typename foo>
class Class
{
public:
void function()
{
int a = 10;
foo()(a);
std::cout << a << std::endl;
}
};
int main()
{
Class<Functor> c;
c.function();
}
我的问题是:为什么甚至可以在没有对象的情况下调用纯类型的运算符?如何以与调用 operator()
相同的方式调用函数 other
?
最佳答案
您不是在纯类型上调用它。 foo()
调用构造函数,并评估为一个临时的 foo
对象,然后您可以在该对象上调用 operator()
。
要用“普通”成员函数做同样的事情,只需做:
foo().other(a);
关于c++ - 仿函数调用(附加字符),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6198702/
我是一名优秀的程序员,十分优秀!