why private static methods exists those are not being called in any static context?
问题 Since static things loaded at time of class loading,and can be used even before object creation as ClassName.member but if static method is private,so you can only do this thing ClassName.method() inside class which is also accessible by directly method() without appending classname. Hence making a private method static has no significance untill it is not being used in any static method of same class.since only private can not be use in some other static method of same class. But I seen some