使用 include 指令初始化聚合
非常快的问题。我想复制&使用 include 指令将文本数据从单独的文件粘贴到源代码中。
合法吗?
struct Record; // collection of data fields
Record rec = { #include "some_big_record.txt" };
int numbers[] = { #include "some_long_sequence_of_numbers.txt" };
它可以在我的盒子(GCC)上运行,但它是否便携?
Very quick question. I want to copy & paste textual data into the source code from the separate file using include directive.
Is it legal?
struct Record; // collection of data fields
Record rec = { #include "some_big_record.txt" };
int numbers[] = { #include "some_long_sequence_of_numbers.txt" };
It works on my box (GCC), but is it portable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是便携式的:
This is portable: