由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - cout 没有输出, 请教
相关主题
C++里get array size的问题 (转载)C++里面
请教函数 INIT 怎么能free memory两个继承问题
boost::function 的 syntax 问题为什么我看不懂下面的code,是不是水平还不够?
pointer to functionC++ 弱问一个
unordered_map?C++疑问
a simple question for C++ classtwo c++ interview questions! (转载)
请问一个exception题目请教一个作用域的问题
ask a C++ inheritance question私有成员不能用类成员函数修改?
相关话题的讨论汇总
话题: std话题: xx话题: pc话题: string话题: include
进入Programming版参与讨论
1 (共1页)
k*****l
发帖数: 177
1
代码如下:
#include
#include
#include
#include
using namespace std;
class XX
{
public:
std::string aa;
std::string pp;
std::string cc;
XX(){}
};
typedef std::vector < XX > PC;
void YY(PC& pp2cc)
{
pp2cc.clear();
for(int i=0; i<5; ++i)
{
XX temp;
std::istringstream isl(" AA BB CC");
isl >> temp.aa >> temp.pp >> temp.cc ;
pp2cc.push_back(temp);
}
}
void printGG(const PC& pp2cc)
{
std::c
r*********r
发帖数: 3195
2
printGG 里的 i 没有初始化.
k*****l
发帖数: 177
3
晕~~ 谢谢。

【在 r*********r 的大作中提到】
: printGG 里的 i 没有初始化.
1 (共1页)
进入Programming版参与讨论
相关主题
私有成员不能用类成员函数修改?unordered_map?
compare double to floata simple question for C++ class
[合集] C++问题(copy constructor)请问一个exception题目
c++环境入门问题ask a C++ inheritance question
C++里get array size的问题 (转载)C++里面
请教函数 INIT 怎么能free memory两个继承问题
boost::function 的 syntax 问题为什么我看不懂下面的code,是不是水平还不够?
pointer to functionC++ 弱问一个
相关话题的讨论汇总
话题: std话题: xx话题: pc话题: string话题: include