摘要: 常类型是指用类型修饰符const说明的类型,常类型的变量或者对象的值是不能被更新的。因此,定义或说明常类型时必须初始化。如果在一个类声明常数据成员,那么任何函数中都不能对该成员赋值。构造函数对该成员进行初始化,只能通过初始化列表来实现。#include<iostream>using namespace std;class A{public:A(int i);void print();const int &r;//常量引用int c;private:const int a;static const int b;//静态数据成员};const int A::b = 10;//静 阅读全文
posted @ 2011-10-09 23:14 又是一年夏天 阅读(2277) 评论(0) 推荐(0) 编辑