const A *a = new A(); a->getText(); a不能调用普通成员函数 只能调用const修饰的函数 在末尾修饰的 B *b = new B(); 不是const 修饰的也能调用const修饰的函数 在末尾修饰