Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有这样的东西(例子):
enum { label1, label2, //label3, label4, total}
是否可以检查是否存在任何标签?
我需要该total值来创建正确大小的矩阵,但需要知道列表中存在哪些标签才能执行特定于每个项目的操作。
total
尝试这个:
enum My_Labels { label1, label2, // label3, label4, total }; static My_Labels check1 = label1; static My_Labels check2 = label2; static My_Labels check3 = label3; static My_Labels check4 = label4;
您应该得到任何缺少元素的编译错误。
此外,如果您注释掉label3,则值会label4发生变化。
label3
label4