gpt4 book ai didi

c++ - 通过在函数后写 N 个括号来调用函数 N 次

转载 作者:行者123 更新时间:2023-11-30 00:37:57 27 4
gpt4 key购买 nike

我想实现以下内容:

我定义了一个函数。当我在函数后面写 N () 时,函数将被调用 N 次。

我举个例子:

#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");
}

那么输出是:

enter image description here

还有其他方法可以实现吗?

最佳答案

使用仿函数很简单。

#include <iostream>

struct Function
{
Function& operator()() {
std::cout << "Google" << std::endl;
return *this;
}
};

int main()
{
Function f;
f()()()();
}

关于c++ - 通过在函数后写 N 个括号来调用函数 N 次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12234553/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com