考虑以下C++代码:
void* a = &a;
为什么编译器不抱怨使用未声明的标识符?
此外,编译器认为变量a是什么?它是指向void对象的指针还是指向指针的void*指针?
a
void*
c++
c++ ×1