○列挙型
列挙型は、ある特定の値しか代入できないデータ型で、任意につくることができるカスタムデータ型です。

#include <stdio.h>

int main(int argc, char* argv[])
{
	enum {A,B,C} test;
	test = A;
	printf("%d\n",A);
	printf("%d\n",B);
	printf("%d\n",C);
	printf("%d\n",test);
	return 0;
}

処理結果
0
1
2
0



▲トップページ > Windows と C++