设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 1207|回复: 4
打印 上一主题 下一主题

为什么显示不出任何东西?

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-5 01:00:54 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
我是一个新手,刚刚调试了一个程序,但是显示不出东西。
程序是这样的:
#include<iostream.h>
class Tclass
{
public:
int x,y;
void print()
{
cout<<x<<","<<y<<endl;
};
};
int add(Tclass *ptf)
{
return (ptf->x+ptf->y);
}
void main()
{
Tclass test,*pf;
pf->x=100;
pf->y=200;
pf->print();
test.x=150;
test.y=450;
test.print();
cout<<"x+y="<<add(&test);
}
不知道是什么原因,请各位高手帮我看一下
2#
发表于 2009-11-5 01:00:55 | 只看该作者
楼主我和你一样期待答案哈,我也不知道怎么回事也~~~
回复 支持 反对

使用道具 举报

3#
发表于 2009-11-5 01:00:56 | 只看该作者
int x,y;
void print()
{
cout<<x<<","<<y<<endl;
};
Tclass test,*pf;
pf没有空间
回复 支持 反对

使用道具 举报

4#
发表于 2009-11-5 01:00:57 | 只看该作者
#include<iostream.h>
class Tclass
{
public:
int x,y;
void print()
{
cout<<x<<","<<y<<endl;
};
};
int add(Tclass *ptf)
{
return (ptf->x+ptf->y);
}
void main()
{
Tclass test,*pf=&test;//我这里改了下
pf->x=100;
pf->y=200;
pf->print();
test.x=150;
test.y=450;
test.print();
cout<<"x+y="<<add(&test);
}
指针没有赋初值,不知道指向哪里!所以运行出错!
回复 支持 反对

使用道具 举报

5#
发表于 2009-11-5 01:00:58 | 只看该作者
OOOOOOOOOOOOOH~~~~
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-19 07:34 , Processed in 0.089855 second(s), 10 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表