concrete methods cannot have abstract specifier May 13, 2015 Get link Facebook X Pinterest Email Other Apps A method which has a body is called concrete method. abstract class Example { abstract void display() //Error { System.out.println("Welcome"); } } Comments
Comments
Post a Comment