我知道这是非常简单的代码,但我是新手,我找不到能够解释这个问题的答案。
#include<iostream>
using namespace std;
int main(){
//This is where codeblocks notes the error.
enum board{'b','o','a','r','d'};
return 0;
}
答案 0 :(得分:3)
我认为你的意思是
enum board{b, o, a, r, d};
您不能将char
文字用作enum
个名称,但可以将enum
个名称指定给char
个文字,例如......
enum board{b='b', o='o', a='a', r='r', d='d'};