You are on page 1of 1

Experiment No.

-6
//Java Program to demonstrate the use of a static variable ,static method ,final and this
keyword.
class Student
{
int rollno;
String name;
final float fee=80000;
static String college = "SIT";
//static method to change the value of static variable
static void change()
{
college = "JJMCOE";
}
Student(int rollno, String name)
{
this.rollno = rollno;
this.name = name;
}
void display()
{
System.out.println(rollno+" "+name+" "+college+" "+fee);
}
}
public class Experiment6
{
public static void main(String args[])
{
Student.change();
Student s1 = new Student(111,"Karan");
Student s2 = new Student(222,"Aryan");
Student s3 = new Student(333,"Sonali");
s1.display();
s2.display();
s3.display();
}
}
Output-

You might also like