Human Mike; Human &rMike = Mike; // 这是可以的
下面这样不行:
Human &rHuman = Human;
因为类只是一个类型,它没有具体的内存地址。
参考:
-- P120