运算符重载

运算符重载

运算符重载用于拓展运算符的作用对象至任意对象

一元运算符(!,)

-[负号]

1
2
3
4
5
6
BIG operator - ()  
{
BIG c;
c.x = -x;
return c;
}

二元运算符(-,*,/)

注意顺序

+

1
2
3
4
5
6
BIG operator + (const BIG &b)
{
Box c;
c.x = x + b.x;
return c;
}

赋值运算符

=

1
2
3
4
void operator = (const BIG &b)
{
x = b.x;
}

输入/输出运算符

<<

1
2
3
4
5
friend ostream &operator << ( ostream &out, const BIG &p )                                 
{
out << p.x:
return out;
}

>>

1
2
3
4
5
friend istream &operator >> ( istream &in, BIG &p )
{
in >> p.x;
return in;
}

递增递减运算符

++A

1
2
3
4
5
6
7
BIG operator ++ ()  
{
BIG c;
x++; //先加加
c.x = x;
return c;
}

A++

1
2
3
4
5
6
7
BIG operator ++ ( int )         
{
BIG c; //保留原来的值
c.x = x;
x++; //加加
return c; //返回原来值
}

类型转换运算符

(类型)

1
2
3
4
5
6
operator char( )
{
char c;
c = a + 'A'
return c;
}