Could someone please tell which among
ACC_PUBLIC
, ACC_PRIVATE
, ACC_PROTECTED
is the access modifier for default constructor in java?
In some of the asm example I saw ACC_PUBLIC
but I could not find jvm specification related to this point.
Why there is not any need of package private access modifier?