Thinking in java 里有这么一句话:so private allows you to freely change that member without concern that it will affect another class in the same package;
我的理解就是我可以随意改变private成员,不必考虑这么做是否会影响其他类!
但有这样的情况:
一个类a中有private属性,public方法,方法中调用了private属性;然后另一个类b调用此public方法,此时可以运行,但如果把a中private属性更改了,b中就会报错吧,那么private的作用何在?
很是不解,求大神指导!