在枚举中包含 .csv 如何工作?

发布于 2024-09-04 12:33:14 字数 334 浏览 4 评论 0原文

enum    ID                           // IDs
    {
    ID_HEADER          = 0,         // ID 0 = headers
    #include "DATA.CSV"
    ID_LIMIT
    };

我在这里继承了一些代码......

查看“DATA.CSV”,我看到用于填充 B 列中的枚举的所有 ID 以及其他数据。

我的问题:
枚举如何知道它正在使用“B 列”来检索其成员?应用程序中肯定还有其他逻辑,但我没有看到它。我还应该寻找什么?

谢谢。

enum    ID                           // IDs
    {
    ID_HEADER          = 0,         // ID 0 = headers
    #include "DATA.CSV"
    ID_LIMIT
    };

I inherited some code here.....

Looking at "DATA.CSV" I see all the ID's used to populate the enum in column B, along with other data.

My question:
How does the enum know that it is using "column B" to retrieve it's members? There must be some other logic in the application yet I don't see it. What else should I look for?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

酷炫老祖宗 2024-09-11 12:33:14

csv 文件看起来像这样:

foo, bar, zod

因此包含它会扩展为:

enum    ID                           // IDs
{
ID_HEADER          = 0,         // ID 0 = headers
foo, bar, zod
ID_LIMIT
};

为了使其真正起作用,您需要在 CSV 文件中添加一个尾随逗号,或者在 ID_LIMIT 之前添加一个逗号。我不明白你在问题中提到的“B 栏”出现在哪里。

A csv file looks something like this:

foo, bar, zod

so including it expands to:

enum    ID                           // IDs
{
ID_HEADER          = 0,         // ID 0 = headers
foo, bar, zod
ID_LIMIT
};

For this to really work, you would either need a trailing comma in the CSV file, or a comma preceding ID_LIMIT. I don't see where the "column B" you mention in your question comes into it.

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