在 C++ 中,我有一个只需要对数组进行只读访问但被错误地声明为接收非常量指针的函数:
size_t countZeroes( int* array, size_t count )
{
size_t result = 0;
for( size_t i = 0; i < count; i++ ) {
if( array[i] == 0 ) {
++result;
}
}
return result;
}
我需要为 const 数组调用它:
static const int Array[] = { 10, 20, 0, 2};
countZeroes( const_cast<int*>( Array ), sizeof( Array ) / sizeof( Array[0] ) );
这将是未定义的行为吗?如果是这样 - 程序何时会运行到 UB - 当执行 const_cast 并调用函数或访问数组时?