<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <tit…
#include <iostream> #include <vector> using namespace std; int main () { vector<int> myvector; // set some initial content: ;i<;i++) myvector.push_back(i);//长度为9 myvector.resize();//重新设置长度为5,多余的元素删掉 myvector.resize(,);//重新设置长度为8,填充元素为…