队列常量和数组常量


队列的常量初始化不需要使用"'":int q2[$] = {3,4},q[$] = {0,2,5};

而数组的常量初始化需要使用"'":int ascend[4] = '{0,1,2,3};

注意到那个单引号不是 define 宏定义的单引号,而是个普通单引号