in JAVA by (32.2k points)
Can we make the abstract methods static in Java?

1 Answer

0 votes
by (32.2k points)

In Java, if we make the abstract methods static, It will become the part of the class, and we can directly call it which is unnecessary. Calling an undefined method is completely useless therefore it is not allowed.

Related questions

+1 vote
asked Oct 27, 2020 in JAVA by sharadyadav1986 (31.6k points)
+1 vote
asked Apr 13 in JAVA by Robin (14.6k points)
+1 vote
asked May 25, 2020 in JAVA by Robindeniel (20.8k points)
...