2013-10-04 99 views

回答

5

是的,你可以。

if (std::find(begin(array), end(array), expectedValue) != end(array)) { 
    // Found the expected enum value 
} 
+0

它可以返回找到的值嗎? – vinnylinux

+0

它應該是'!= end(array)' –

+0

它是否有效?或者我應該使用其他的東西嗎? – vinnylinux