We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
}
final class MyBook extends Book{
void setTitle(String title2){
this.title = title2;
}
}
public class Main{
public static void main(String []args){
//Book new_novel=new Book(); This line prHMain.java:25: error: Book is abstract; cannot be instantiated
Scanner sc=new Scanner(System.in);
String title=sc.nextLine();
MyBook new_novel=new MyBook();
new_novel.setTitle(title);
System.out.println("The title is: "+new_novel.getTitle());
sc.close();
}
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Join us
Create a HackerRank account
Be part of a 26 million-strong community of developers
Please signup or login in order to view this challenge
Java Abstract Class
You are viewing a single comment's thread. Return to all comments →
import java.util.*; abstract class Book{ String title; abstract void setTitle(String s); String getTitle(){ return title; }
} final class MyBook extends Book{ void setTitle(String title2){ this.title = title2; } } public class Main{
}