问题描述
- C++ 编程 运算符重载
-
c++重载编程编写一个Customer类,包括账号、密码、姓名、余额(初始为0)。
用两种方法重载运算符“-”,使得两个Customer对象相减,能得到它们余额之差想要用户自己输入用户余额,用户相减为余额之差
解决方案
C++中运算符重载的几种方法的适用性探讨
方法如下,具体代码还要你自己动手编写,学习不能偷懒的。
解决方案二:
class Customer
{
...
public:
Custom operator-(const Custom& custom);
Custom& operator-=(const Custom& custom);
...
};
时间: 2025-01-29 16:32:40