+ 2
Can method be private and abstract at the same time?
4 Answers
+ 15
Java: The answer is No.
Keyword abstract cannot be used for methods that are static, final or private, Â as methods with these modifiers cannot be overridden.
+ 13
saurabh sable
You're welcome đ
+ 3
LukArToDo thank you
+ 1
nope it can be protected though