摘要: 1 #include 2 #include 3 using namespace std; 4 class Shape{ 5 public: 6 virtual double Area()=0; 7 }; 8 class Triangle:public Shape{ 9 double a,b,c; 10 public: 11 Triangle(double... 阅读全文
posted @ 2016-11-03 16:24 IT男汉 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 1 /*类的只读静态成员的初始化*/ 2 #include 3 using namespace std; 4 class A{ 5 public: 6 static const int i; 7 static const int j=6;//内部初始化 8 }; 9 const int A::i = 5;//外部初始化 10 int main(){ 11 ... 阅读全文
posted @ 2016-11-03 15:56 IT男汉 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 2、局部类 阅读全文
posted @ 2016-11-03 15:18 IT男汉 阅读(930) 评论(0) 推荐(0) 编辑
摘要: 1、类是一个数据类型,所以类定义后需要加; 2、初始化列表 3、构造函数与申请空间 阅读全文
posted @ 2016-11-03 11:32 IT男汉 阅读(359) 评论(0) 推荐(0) 编辑