当前位置:   article > 正文

C++ //练习 7.57 编写你自己的Account类。

C++ //练习 7.57 编写你自己的Account类。

C++ Primer(第5版) 练习 7.57

练习 7.57 编写你自己的Account类。

环境:Linux Ubuntu(云服务器)
工具:vim

 

代码块
class Account{
	public:
	void calculate() { amount += amount * interestRate; }
	static double rate() { return interestRate; }
	static void rate(double);

	private:
	std::string owner;
	double amount;
	static double interestRate;
	static double initRate();
	static constexpr int period =  30;
	double daily_tbl[period];
};
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/137705
推荐阅读
相关标签
  

闽ICP备14008679号