由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 请教c++的string vector问题,谢谢! (转载)
相关主题
一个小程序差点搞死了g++,怎么回事?问个char*的问题
[合集] 问个面试题What is wrong with the constructor calling?
Pointer to iterator?What is wrong with the code?
如何把文件内容读到2D的vector里?谁给新手解释一下这个c++小程序
c++ iterator 弱问c++ std::abs(int) ambiguous?
c++环境入门问题namespace defined in another file
pointer to function再问两个C++问题
一个指向指针的指针的引用?一个C++ operator new的重载问题
相关话题的讨论汇总
话题: vector话题: m1话题: string话题: m2话题: int
进入Programming版参与讨论
1 (共1页)
g*****1
发帖数: 998
1
【 以下文字转载自 JobHunting 讨论区 】
发信人: guagua1 (), 信区: JobHunting
标 题: 请教c++的string vector问题,谢谢!
发信站: BBS 未名空间站 (Mon Feb 28 11:16:46 2011, 美东)
下面这段代码,在vc express2010里编译通不过,但是我试了g++就可以。
另外,我把string vector改成注解掉的那段里的int vector, vc就可以通过。
请问我这个应该怎么改一下呢?我希望在vc里用。
#include
#include
#include
#include
using namespace std;
int main () {

char *m1[] = {"a","e","c","m"};
vector v1(m1,m1+4);
char *m2[] ={"n"};
vector v2(m2,m2+1);

vector u;
/* int m1[] = {1,2,3,4};
vector v1(m1,m1+4);
int m2[] ={100};
vector v2(m2,m2+1);

vector u;*/

set_union(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(u));
return 0;
}
m******1
发帖数: 418
2
add #include
also it might need to add
using namespace std;
in the main.
1 (共1页)
进入Programming版参与讨论
相关主题
一个C++ operator new的重载问题c++ iterator 弱问
为啥gcc找不到类的构造函数?c++环境入门问题
Question about pointer to function
还请教一个关于C++的问题一个指向指针的指针的引用?
一个小程序差点搞死了g++,怎么回事?问个char*的问题
[合集] 问个面试题What is wrong with the constructor calling?
Pointer to iterator?What is wrong with the code?
如何把文件内容读到2D的vector里?谁给新手解释一下这个c++小程序
相关话题的讨论汇总
话题: vector话题: m1话题: string话题: m2话题: int