gpt4 book ai didi

C++ 预处理指令

转载 作者:搜寻专家 更新时间:2023-10-31 00:14:39 25 4
gpt4 key购买 nike

假设我有以下代码

int i;
int j;
string s;
string t;

是否有任何预处理器可以将它转换成这样的东西?

int i;
int j;
string s;
string t;
void print() {
cout << i;
cout << j;
cout << s;
cout << t;
}

看起来像这样的东西会很棒。

#section print
int i;
int j;
string s;
string t;
#endsection

使用上面的代码,我将不得不编写另一个预处理器来处理它,但我不知道如何做。

最佳答案

没有。

预处理器指令在预处理器中定义,您不能添加新的。

但是您可以轻松编写一些脚本来进行此类更改。 (Per/Python/Ruby,随便)

每次编译前只需要手动运行该脚本即可。

关于C++ 预处理指令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22410954/

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