-3

我可以有一个枚举数组并在 C++11 中的那个数组中搜索一个特定的枚举,或者只是检查它是否存在?

4

1 回答 1

5

是的你可以。

if (std::find(begin(array), end(array), expectedValue) != end(array)) {
    // Found the expected enum value
}
于 2013-10-04T19:49:12.747 回答