警告 C26482

只使用常量表达式在数组中编制索引。

另请参阅

C++ Core Guidelines Bounds.2

示例

int getSomeIndex();

void function(int* p, int count)
{
    p[getSomeIndex()] = 0; // C26482, Only index into arrays using constant expressions
}