更改提供给 C 预处理器宏的参数的大小写
我对 C 预处理器相当陌生。是否可以更改提供给类似函数 #define
的参数的大小写?例如,我想编写 test(size)
,然后在结果替换中包含“Size”。
I'm fairly new to the C preprocessor. Is it possible to change the case of an argument provided to a function-like #define
? For example, I want to write test(size)
and then involve "Size" in the resulting replacement.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可以。预处理器可以组合标识符以形成新的标识符,但不能修改标识符。
No. The preprocessor can combine identifiers to form new ones, but it cannot modify an identifier.