主题:[讨论]有那位大师能解释下为什么F2实例可以如此赋值
struct F2
{
int s;
typedef void result_type;
void operator()(int x){s += x;}
};
int main()
{
F2 _f = {0};
return 0;
}
{
int s;
typedef void result_type;
void operator()(int x){s += x;}
};
int main()
{
F2 _f = {0};
return 0;
}