我有一堂课,我想要一些值为 0、1、3、7、15 的位掩码,...
所以本质上我想声明一个常量 int 的数组,例如:
class A{
const int masks[] = {0,1,3,5,7,....}
}
但编译器总是会抱怨。
我试过:
static const int masks[] = {0,1...}
static const int masks[9]; // then initializing inside the constructor
关于如何做到这一点的任何想法?
谢谢!