gpt4 book ai didi

objective-c - 在 Objective-C 中更改预处理器值

转载 作者:行者123 更新时间:2023-12-04 23:53:10 24 4
gpt4 key购买 nike

有没有办法改变预处理器的值,比如:

#define XValue 50 

在 Objective-C 中?

最佳答案

如果您的意思是在运行时更改它,那么不会,因为 XValue 在编译之前被替换为 50

如果您的意思是在编译中更改它,那么是的,使用 #undef#define

例子:

XValue = 30; // NOT ALLOWED

#undef XValue // ALLOWED
#define XValue 30

关于objective-c - 在 Objective-C 中更改预处理器值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11949052/

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