本文介绍了您可以嵌套C预处理程序指令吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
例如,以下可能性:
#define definer(x) #define #x?
推荐答案
尽管您的语法无效,但从技术上讲,您的问题的答案是肯定的.但这只能通过令人讨厌的技巧来实现,这些技巧使您的代码难以阅读且无法维护.
Though your syntax is invalid, the answer to your question is technically yes. But it can only be accomplished by nasty tricks that make your code unreadable and unmaintainable.
另请参见: http://www.ioccc.org/years.html#1995_vanschnitz 和 http://www.ioccc.org/years.html#2004_vik2
这篇关于您可以嵌套C预处理程序指令吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!