据我所知sizeof
是编译时运算符,为什么这段代码编译并正确运行而没有任何警告?
#include <iostream>
int main() {
int size;
std::cin >> size;
int array[size];
std::cout << sizeof(array) / sizeof(int) << std::endl;
}
g++ -v
Reading specs from /usr/lib/gcc/x86_64-redhat-linux/3.4.6/specs
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --disable-checking --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-java-awt=gtk --host=x86_64-redhat-linux
Thread model: posix
gcc version 3.4.6 20060404 (Red Hat 3.4.6-9)
答案 0 :(得分:5)
首先,代码无效C ++,因为C ++中没有variable-length arrays(VLA)。它们是C功能。您的C ++编译器支持它们作为非标准扩展。使用-Wvla
或-pedantic
发出警告:
warning: ISO C++ forbids variable length array 'array' [-Wvla]
其次,sizeof()
运算符在应用于C VLA时不再是编译时构造。 C标准在§6.5.3.4sizeof
运算符中暗示了这一点:
如果操作数的类型是可变长度数组 type,操作数被评估;否则,不评估操作数,结果是 整数常数。