次の方法で共有


警告 C26483

値 'value' は変数 'variable' の境界 (0, 'bound') の外側にあります。 配列にインデックスを作成するには、配列の境界内にある定数式を使用します (bounds.2)。

関連項目

C++ Core Guidelines Bounds.2

void function()
{
    std::array<int, 3> arr1 { 1, 2, 3 };
    arr1[3] = 4; // C26483, 3 is outside the bounds of the array

    int arr2[] { 1, 2, 3 };
    arr2[3] = 4; // C26483, 3 is outside the bounds of the array
}