| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 708 人关注过本帖
标题:如何用构造函数用于类型转换
取消只看楼主 加入收藏
lixang
Rank: 1
等 级:新手上路
帖 子:231
专家分:0
注 册:2006-7-15
收藏
 问题点数:0 回复次数:1 
如何用构造函数用于类型转换

//struction-function-c
# include<iostream.h>
# include"struction-function-h.h"

class Fraction //分数类
{
private:
int fenzi;
int fenmu;
public:
Fraction():fenzi(0),femnmu(1) {}
Fraction(int n): fenzi(n),fenmu(1) {}
Fraction(int n, int d): fenzi(n),fenmu(d) {}
void out()
{
cout<<fenzi<<'/'<<fenmu<<endl;
return;
}
};
Fraction Fraction::operator+(Fraction & x)
{
Fraction y;
y.fenzi=fenzi*x.fenmu+fenmu*x.fenzi;
y.fenmu=fenmu*x.fenmu;
return y;
}
void main()
{
Fraction x,s=5;
x=s+Fraction(9,11);
x=s+8+Fraction(9,11);//因为8的存在所以这一句话不能通过编译!类型不匹配!
//如何将8正确的加在上面的式字里面(也就是如何用构造函数用于类型转换),保证式子的正确运行;

x.out();

return;
}

搜索更多相关主题的帖子: 函数 构造 类型 
2006-09-30 16:12
lixang
Rank: 1
等 级:新手上路
帖 子:231
专家分:0
注 册:2006-7-15
收藏
得分:0 
以下是引用wfpb在2006-9-30 16:56:25的发言:

# include<iostream.h>

class Fraction //分数类
{
private:
int fenzi;
int fenmu;
public:
Fraction():fenzi(0),fenmu(1) {}
Fraction(const int n):fenzi(n),fenmu(1){}
Fraction(int n, int d): fenzi(n),fenmu(d) {}
Fraction Fraction::operator+(const Fraction & x);
void out() //1:你加的const
{
cout<<fenzi<<'/'<<fenmu<<endl;
return;
}
};
Fraction Fraction::operator+(const Fraction & x)
{ //2:你加的const
Fraction y;
y.fenzi=fenzi*x.fenmu+fenmu*x.fenzi;
y.fenmu=fenmu*x.fenmu;
return y;
}
void main()
{
Fraction x,s=5;
x=s+Fraction(9,11);
x=s+8+Fraction(9,11);
x.out();

return;
}

谢谢你的帮助:

我不明白为什么加了两个const :(能否解释一下么?0
1 一个是在构造函数中;2 另一个是在重载运算符中;
这样他们就能够实现了(使用构造函数对类型的转换)

2006-09-30 18:46
快速回复:如何用构造函数用于类型转换
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016170 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved