运算符重载函数

1、“=”赋值运算符重载————解决指针悬挂问题
说明:类的赋值运算符“=”只能重载为成员函数,而不能把它重载为友元函数

class STRING
{
public:
STRING &operator=(const STRING &);
private:
char *ptr;
};
STRING &STRING::operator(const STRING &s)
{if(this==&s) return *this;//防止s=s的赋值
delete ptr;
ptr=new char[strlen(s)+1];
strcpy(ptr,s.ptr);
return *this;
}

2、下标运算符“[]”的重载

```c
class Vector4{
public:
int &operator[](int bi);

};
int &Vector4::operator [](int bi)
{if(bi<0)||bi>=4)
{cout<<"Bad subscript!";
exit(1)
}
return v[bi]
}
通过v[2]可以直接访问类中的私有数据数组中v[2];

你可能感兴趣的:(C++函数库,c++)