Skip to main content

java program for student details using inheritance

# Java program to print student details using "single-level" inheritance

In this section, You will learn how to print student details using single inheritance in java, with Scanner and without Scanner class.

1.) With "Scanner" class

Let's try to create a simple example :

  ➤ Example : student.java;

  1. import java.util.Scanner;

  2. class StudentDetails {

  3.   int roll_no;

  4.   String name, cl;

  5. //creating a function to take student details

  6.   void input() {

  7. Scanner sc = new Scanner(System.in);

  8.  

  9. System.out.print("Enter Roll Number: ");

  10. roll_no = sc.nextInt(); //=> 22\n == buffer

  11.  

  12. sc.nextLine(); // => \n

  13.  

  14. System.out.print("Enter Name: ");

  15. name = sc.nextLine();

  16.  

  17. System.out.print("Enter class: ");

  18. cl = sc.nextLine();

  19.   }

  20. }

  21. class Student extends StudentDetails {

  22.   //method to display student details

  23.   void display() {

  24. System.out.println("/******* Student details printed ********/");

  25. System.out.println("Roll Number is: "+roll_no);

  26. System.out.println("Your name is: "+name);

  27. System.out.println("Your class is: "+cl);

  28.   }

  29.   public static void main(String args[]) {

  30. Student obj = new Student();

  31. obj.input();

  32. obj.display();

  33.   }

  34. }

Output :
  • Enter Roll Number: 22

  • Enter Name: Coder Website

  • Enter class: 12th

  • /******* Student details printed ********/

  • Roll Number is: 22

  • Your name is: Coder Website

  • Your class is: 12th

2.) Without "Scanner" class

Let's try to create a simple example :

  ➤ Example 2: student.java;

  1. class StudentDetails {

  2.   int roll_no;

  3.   String name, cl;

  4. //creating a function to take student details

  5.   void input(int roll, String nam, String cl_name) {

  6. roll_no = roll;

  7. name = nam;

  8. cl = cl_name;

  9.   }

  10. }

  11. class Student extends StudentDetails {

  12.   //method to display student details

  13.   void display() {

  14. System.out.println("\n/******* Student details printed ********/");

  15. System.out.println("Roll Number is: "+roll_no);

  16. System.out.println("Your name is: "+name);

  17. System.out.println("Your class is: "+cl);

  18.   }

  19.   public static void main(String args[]) {

  20. Student std1 = new Student();

  21. std1.input(20, "Ankaj Gupta", "12th");

  22. std1.display();

  23.  

  24. Student std2 = new Student();

  25. std2.input(10, "Anmol kumar", "10th");

  26. std2.display();

  27.   }

  28. }

Output :
  • /******* Student details printed ********/

  • Roll Number is: 20

  • Your name is: Ankaj Gupta

  • Your class is: 12th

  •  

  • /******* Student details printed ********/

  • Roll Number is: 10

  • Your name is: Anmol kumar

  • Your class is: 10th

Recommended Posts:

Comments

Popular Posts

How to remove the date and .html from every blogger post url

#Remove date and .html from blogger post url A Common search term which every blogger search is How to Remove Date From Blogger Post URL or how do I remove date from blogger permalink? Follow the steps below and then date and .html will be removed from the URL of your blogger post. Step 1 : Login to your Blogger blog and select Theme / Template. Step 2 : Click on Edit HTML and paste the below code just above the </head> tag let's see code :   ➤ Code : mycode.js; Copy code <script type='text/javascript' > //<![CDATA[ // BloggerJS v0.3.1 var urlTotal,nextPageToken,postsDatePrefix=!1,accessOnly=!1,useApiV3=!1,apiKey="",blogId="",postsOrPages=["pages","posts"],jsonIndex=1,secondRequest=!0,feedPriority=0,amp="&"[0];function urlVal(){var e=window.location.pathname,t=e.length;return...

Django static files not working when debug false || debug true

# Django static and media files not working when debug is false In this article you will learn how to fix problem of not loading static files and media in Django even the DEBUG is FALSE. This is the easiest and safest solution. # Problem: Django static and media files not working when debug is false  ➤ Code: settings.py DEBUG = False #True ALLOWED_HOSTS = [ '*' ] #Host name # Problem Fix: Let's see, How you can fix the problem of Django static and media files not working when DEBUB = False : 1.)First way: devserver in insecure mode If you still need to server static locally ( e.g. for testing without debug ) you can run devserver in insecure mode: python manage.py runserver --insecure --insecure: it means you can run serve...

How to remove ? m=1 or ?m=0 from blogger post URL

# Remove m=1 From URL of Blogger post A Common search term that every blogger search is How to ?m=1 or ?m=0 from blogger Post URL. We all know that "simplicity is beauty" and you want to clean permalink. So, in this article, I will guide you on how to remove ?m=1 from the blogger URL, and make a simple professional URL. Follow the few steps below and removed ?m=1 from the URL of your blogger post. Step 1 : First, you login into your blogger's dashboard and then select your blog. Step 2 : Click on the Theme option. Step 3 : Click on the customise Step 4 : Click on Edit HTML option. Step 5 : Press (CTRL + F) from the keyboard and type "/head" and then search. ( If you are not understanding, see the below photo ) Step 6 : Now paste the below code just above the </head> tag. let's see code :   ➤ Code : mycode.js; Copy code ...