为什么说'push_back'还没有被宣布?
#include <iostream> #include <vector> using namespace std; int main() { vector <int> v(30); v[0].push_back(0); return 0; }
c++ stl vector
c++ ×1
stl ×1
vector ×1