This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

What can't I make a call in global scope?


Why the following code is illegal?


#include <iostream>
#include <vector>

vector<int > vi;

vi.push_back(10); //why this line is illegal?
int ii = vi.at(0); // this line is legal??

int main()
{
  return 0;
}


Appreciation for your kindly help/

Zongjun


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]