首页 > 编程语言 > 详细

Class example in C/C++

时间:2017-06-25 09:16:37      阅读:262      评论:0      收藏:0      [点我收藏+]
class Player {
 private:
  int health; //these are the attributes
  int strength;
  int agility;




 public:
void move();
void attackEnemy(); //these are the method prototypes
void getTreasure();


};


Every Player object which gets created has three integers called health, strength and agility for its attributes.


The methods we can perform on a Player object are move, attackEnemy and getTreasure.

Class example in C/C++

原文:http://www.cnblogs.com/llguanli/p/7076091.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!