在枚举中包含 .csv 如何工作?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
csv 文件看起来像这样:
因此包含它会扩展为:
为了使其真正起作用,您需要在 CSV 文件中添加一个尾随逗号,或者在 ID_LIMIT 之前添加一个逗号。我不明白你在问题中提到的“B 栏”出现在哪里。
A csv file looks something like this:
so including it expands to:
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.