我想实现以下内容:
我定义了一个函数。当我在函数后面写N ()
时,该函数将被调用N次。
我举个例子:</p>
#include <iostream>
using namespace std;
typedef void* (*c)();
typedef c (*b)();
typedef b (*a)();
a aaa()
{
cout<<"Google"<<endl;
return (a)aaa;
}
int main()
{
aaa()()()();
system("pause");
}
然后输出是:
还有其他方法可以实现吗?