Powered by Blogger.

Static keyword in Java



Static keyword in Java

Static keyword in java is mainly used for memory management. In Java you can apply Static Keyword with variables, methods, blocks and nested class.

Static keyword in Java

class StaticDemo
{
   int rollno;
   String name;
   static String college ="ITM";
   
   StaticDemo(int r,String n)
{
   rollno = r;
   name = n;
   }
 void display ()
{
System.out.println(rollno+" "+name+" "+college);
}

 public static void main(String args[])
{
 StaticDemo obj1 = new StaticDemo(45,"Sultan");
 Student8 obj2 = new StaticDemo(11,"Faiz");
 
 obj1.display();
 obj2.display();
 }
}  

Output:

45 Sultan ITM
11 Faiz ITM





facebook
google-plus
twitter
pinterest

No comments :

Post a Comment

HTML Tutorial

images

About Sitesbay

This blog is related to Java Tutorial, C++ Tutorial, C Tutorial, Online Earning tips and more in very simple and easy way. Here i will try to give complete idea related to all new technology.

Java Tutorial

Java is Object oriented programming language, It is more secure and high performance language.

C++ Tutorial

C++ is also Object oriented programming language, It is more simple and easy to learn.

 
https://sitesbay.blogspot.com/?utm_medium=d2898efa59afcc0bc411921036e22b767ca37b09