How to add element to C++ array?

后端 未结 11 2450
旧时难觅i
旧时难觅i 2020-12-12 23:26

I want to add an int into an array, but the problem is that I don\'t know what the index is now.

int[] arr = new int[15];
arr[0] = 1;
arr[1] = 2;
arr[2] = 3;         


        
11条回答
  •  独厮守ぢ
    2020-12-13 00:18

    There is no way to do what you say in C++ with plain arrays. The C++ solution for that is by using the STL library that gives you the std::vector.

    You can use a vector in this way:

    std::vector< int > arr;
    
    arr.push_back(1);
    arr.push_back(2);
    arr.push_back(3);
    

提交回复
热议问题