C++ Primer(第5版) 练习 9.14
练习 9.14 编写程序,将一个list中的char*指针(指向C风格字符串)元素赋值给一个vector中的string。
环境:Linux Ubuntu(云服务器)
工具:vim
代码块
cpp
/*************************************************************************
> File Name: ex9.14.cpp
> Author:
> Mail:
> Created Time: Mon 26 Feb 2024 01:33:44 PM CST
************************************************************************/
#include<iostream>
#include<vector>
#include<list>
using namespace std;
int main(){
vector<string> str;
list<const char*> li = {"hello", "world", "help"};
str.assign(li.begin(), li.end());
for(const auto s : str){
cout<<s<<" ";
}
cout<<endl;
return 0;
}