使用 include 指令初始化聚合

发布于 2024-11-02 17:55:33 字数 297 浏览 0 评论 0原文

非常快的问题。我想复制&使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幽蝶幻影 2024-11-09 17:55:33

这是便携式的:

Record rec = { 
#include "some_big_record.txt" 
};

This is portable:

Record rec = { 
#include "some_big_record.txt" 
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文