非静态属性和方法存放在每一个单独的对象中
静态属性和方法存放在堆中的方法区
有时候直接用类名.属性名报错,就是因为该属性属于对象,而对象还未创建你就直接使用
Cannot make a static reference to the non-static field Human.name
非静态属性和方法存放在每一个单独的对象中
静态属性和方法存放在堆中的方法区
有时候直接用类名.属性名报错,就是因为该属性属于对象,而对象还未创建你就直接使用
Cannot make a static reference to the non-static field Human.name