vector 对象中存放指针类型数据

时间:2020-12-27 10:48:29

<<C++ Primer>> 第四版Exercise Section 5.6 的5.1.6 有一道题是这样的:编写程序定义一个vector对象,其每个元素都是指向string类型的指针,读取vector对象并输出每个string类型的值以及其长度。

 // 2_3.cpp : 定义控制台应用程序的入口点。
// #include "stdafx.h"
#include <iostream>
#include <string>
#include <vector>
#include <ctime> using namespace std; int main()
{
vector<string*> vect;
string str = "hello";
string str1 = "world";
vect.push_back(&str);
vect.push_back(&str1); for (vector<string*>::iterator begin = vect.begin(); begin != vect.end(); ++begin)
{
cout << *(*begin) << endl;
cout << (*begin)->length() << endl;
} return ;
}

其实这里想要考查的是,通过指针获取对象的成员函数可以使用-> 操作符。