gpt4 book ai didi

c++ - CPP 宏 : Counter that gives number of instantiations/calls

转载 作者:搜寻专家 更新时间:2023-10-30 23:49:36 24 4
gpt4 key购买 nike

我想要一个 C 预处理器宏,它知道到目前为止这个宏的实例化/宏调用的数量。示例:

int main() {
printf("%d\n", MACRO());
printf("%d\n", MACRO());
}

应该打印

0
1

这样的事情可能吗?

请注意,不足以将其转发给下面提议的函数。它应该在以下上下文中工作:

// global variable
std::vector<bool> calls_hit;

#define OTHER_MACRO() \
{ \
const int counter = MACRO(); \
calls_hit.resize(std::max(calls_hit.size(), counter)); \
calls_hit[counter] = true; \
}

最佳答案

为什么这必须是一个宏?无论如何,您可以在宏中包装一个带有静态计数器的函数:

int count_calls() {
static count = 0;
return count++;
}

#define MACRO() count_calls()

关于c++ - CPP 宏 : Counter that gives number of instantiations/calls,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4033011/

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