class Orange{
Orange(){
}
}
What is the difference between the usage of the modifier - in this case, package-private - in front of the cl
To start with there are 4 access levels created by 3 access modifiers.
You are correct about - Modifiers at the level of constructors are directly related to the instantiation of the class.
Modifiers at the level of Class decide the accessibility of the Class.