clone问题Employee类需要使用clone()方法,Manager类继承Employee类,但Manager中有不可克隆的实例变量或不能使用clone,这种情况怎么解决?[解决办法]在实现Manager的clone()方法时,只调用super.clone()不就得了吗?