- //文件名:CHAPTER6-3.cpp
- #pragma warning(disable:4786)
- #include <string>
- #include <vector>
- #include <iostream>
- using namespace std;
- void main ()
- { vector<string> Myvector;
- cout<<"Good for using namespace"<<endl;
- cout<<"Good for no warning message!"<<endl;
- }