c++标准帝来,问个概念,谢谢
In a declaration T D where D has the form* cv-qualifier-seqopt D1And the type of the identifier in the declaration T D1 is "derived-declarator-type-list T", then the type of the identifier of D is "derived-declarator-type-list cv-qualifier-seq pointer to T". The cv-qualifiers apply to the pointer and not to the object pointer to.
typedef int unsigned my_uint_arr[3];int main(){ const my_uint_arr data={0,1,2}; const my_uint_arr *const volatile p=&data; return 0;}