Sunday 8 November 2020

Example of this keyword in JAVA

 

 

Example of this keyword in JAVA


Program:-


class Student

{

   int id;

   String name;

   Student(int id, String name)

    {

         this.id = id;

          this.name = name;

     }

void display( )

{

    System.out.println(id +"  "+ name);

 }

public static void main(String args[])

 {

    Student s1 = new student(111, "Karan");

    Student s2 = new student(222, "Ram"); 

    s1.display( );

    s2.display( );

 

   }


 }


OUTPUT:-

111 Karan

222 Ram

 

 

 

 




















No comments:

Post a Comment

Student Marks Calculation app using java

      import javax.swing. *; import java.awt.event.ActionEvent ; import java.awt.event.ActionListener ; public class Student { private J...