我无法使用GCC或Clang编译下面的代码。试过C ++ 11和C ++ 14。
我的问题:
有没有合理的理由不实施?我自己,我想不出任何......请参阅下面的解决方法。
enum class fruit {
APPLES,
ORANGES,
STRAWBERRIES
};
struct Area {float x, y, width, height;};
const Area test[] = {
[fruit::APPLES] = {1,2,3,4},
[fruit::ORANGES] = {2,2,3,4},
[fruit::STRAWBERRIES] = {3,2,3,4}
};
这虽然编译得很好:
namespace fruit { // instead of enum class, this works
enum {
APPLES,
ORANGES,
STRAWBERRIES
};
}
struct Area {float x, y, width, height;};
const Area test[] = {
[fruit::APPLES] = {1,2,3,4},
[fruit::ORANGES] = {2,2,3,4},
[fruit::STRAWBERRIES] = {3,2,3,4}
};
答案 0 :(得分:0)
这显然是使用"指定的初始化程序"它是C99的一个特性,不是C ++标准的一部分(即使它在某些情况下编译):
int array[] = {
[1] = 11,
[0] = 22
};
如果我做了这些更改,我的问题中的代码会为我编译:
[fruit::APPLES] = {1,2,3,4}
转变为:
[(int)fruit::APPLES] = {1,2,3,4}
或者(更正确的方式):
[static_cast<int>(fruit::APPLES)] = {1,2,3,4}
但是如果你想要标准兼容,最好不要使用指定的初始化器,而是重写代码...