In java can an abstract method be anything other than public? Are abstract methods implicitly public or are they package if you don’t specify? (regular methods are implicitly package right?) are there any visibility modifiers that an abstract method can’t have? (private strikes me as problematic)
In java can an abstract method be anything other than public? Are abstract methods
Share
abstractmethods have the same visibility rules as normal methods, except that they cannot beprivate.