数据的类型转换有两种形式:1 隐式类型转换;2 显式类型装换;
C++中规定数据类型级别从高到低的次序是:double->float->long int->int->short、char
自定义类型和内部类型之间的转换:1 构造函数;2类类型转换函数;
构造函数完成类型转换,类内至少定义一个只带一个参数的构造函数,当进行类型转换时,系统会自动调用该构造函数。
不能利用构造函数把自定义类型的数据转换为系统预定义类型的数据,只能实现系统预定义类型向自定义类类型的转换。
类类型转换函数定义格式:
class 源类类名
{
operator 目的类型()
{
。。。。。
return 目的类型的数据;
}
}
使用类类型转换需要注意的问题:
1 类类型转换函数只能定义为一个类的成员函数,而不能定义为类的友元函数
2 类类型转换函数既没有参数,也不显式给出返回类型
3 类类型转换函数必须有“return 目的类型数据”的语句,即必须返回目的类型数据作为函数的返回值
- #include<iostream.h>
- class Complex
- {
- private:
- double real;
- double imag;
- public:
- Complex(double x=0,double y=0);
- operator float();
- void print();
- };
- Complex::Complex(double x,double y)
- {
- real=x;
- imag=y;
- }
- Complex::operator float()
- {
- return float(real);
- }
- void Complex::print()
- {
- cout<<real<<","<<imag<<endl;
- }
- void main()
- {
- Complex a(4.3,5.2);
- Complex b(4.3,5.2);
- a.print();
- cout<<float(a)*0.5<<endl;
- Complex c=a+b;
- c.print();
- }
阅读(2164) | 评论(0) | 转发(0) |