c++ length of array sizeof的相關公司資訊
Is there any way to determine the size of a C++ array programmatically? And if not, why? - Stack Ove

Is there any way to determine the size of a C++ array programmatically? And if not, why? - Stack Ove

瀏覽:775
日期:2024-08-13
Actually, if you allocated the array on the stack the sizeof operator would return 1024 -- which is 256 (the # of elements) * 4 (the size of an individual element). (sizeof(arr)/sizeof(arr[0])) would give the result 256. – Kevin Oct 13 '08 at 16:03...看更多