1.Composition下的构造和析构
构造由内而外
析构由外而内
2.Inheritance 下的构造和析构
构造由内而外
析构由外而内
3.Inheritance+Composition下的构造和析构
构造由内而外
析构由外而内
4.如果类有虚函数,就会有一个vptr和vtbl
5.const
常量函数的const 和non-const函数同时存在时,
const object 只能调用const版本
non-const object只能调用non-const版本
6.new和delete
new和delete都可以被重载