vector 对象中存放指针类型数据 <<C++ Primer>> 第四版Exercise Section 5.6 的5.1.6 有一道题是这样的:编写程序定义一个vector对象,其每个元素都是指向string类型的指针,读取vector对象并输出每个string类型的值以及其长度。 1//2_3.cpp : 定义控制台应用程序的入口点。2//34#include"stdafx.h"5#include <i...