SlideShare a Scribd company logo
2
Most read
5
Most read
10
Most read
 Static variable
 Program of counter without static variable
 Program of counter with static variable
 Static method
 Restrictions for static method
 Why main method is static ?
 Static block
 Can we execute a program without main
method ?
 The static keyword in java is used for memory
management mainly. We can apply java static
keyword with variables, methods, blocks and
nested class. The static keyword belongs to
the class than instance of the class.
 The static can be:
◦ variable (also known as class variable)
◦ method (also known as class method)
◦ block
◦ nested class
 If you declare any variable as static, it is
known static variable.
◦ The static variable can be used to refer the common
property of all objects (that is not unique for each
object) e.g. company name of employees,college
name of students etc.
◦ The static variable gets memory only once in class
area at the time of class loading.
 It makes your program memory efficient (i.e
it saves memory).
 class Student{
 int rollno;
 String name;
 String college="ITS";
 }
 Suppose there are 500 students in my college,
now all instance data members will get memory
each time when object is created.All student have
its unique rollno and name so instance data
member is good.Here, college refers to the
common property of all objects.If we make it
static,this field will get memory only once.
 Java static property is shared to all objects.
 //Program of static variable

 class Student8{
 int rollno;
 String name;
 static String college ="ITS";

 Student8(int r,String n){
 rollno = r;
 name = n;
 }
 void display (){System.out.println(rollno+" "+name+" "+co
llege);}


 public static void main(String args[]){
 Student8 s1 = new Student8(111,"Karan");
 Student8 s2 = new Student8(222,"Aryan");

 s1.display();
 s2.display();
 }
 }
6. static keyword
 In this example, we have created an instance
variable named count which is incremented in
the constructor. Since instance variable gets
the memory at the time of object creation,
each object will have the copy of the instance
variable, if it is incremented, it won't reflect
to other objects. So each objects will have the
value 1 in the count variable.
 class Counter{
 int count=0;//will get memory when instance is created

 Counter(){
 count++;
 System.out.println(count);
 }

 public static void main(String args[]){

 Counter c1=new Counter();
 Counter c2=new Counter();
 Counter c3=new Counter();

 }
 }
 As we have mentioned above, static variable
will get the memory only once, if any object
changes the value of the static variable, it will
retain its value.
 class Counter2{
 static int count=0;//will get memory only once and retain its value

 Counter2(){
 count++;
 System.out.println(count);
 }

 public static void main(String args[]){

 Counter2 c1=new Counter2();
 Counter2 c2=new Counter2();
 Counter2 c3=new Counter2();

 }
 }
 If you apply static keyword with any method,
it is known as static method.
◦ A static method belongs to the class rather than
object of a class.
◦ A static method can be invoked without the need
for creating an instance of a class.
◦ static method can access static data member and
can change the value of it.
 //Program of changing the common property of all objects(static field).

 class Student9{
 int rollno;
 String name;
 static String college = "ITS";

 static void change(){
 college = "BBDIT";
 }

 Student9(int r, String n){
 rollno = r;
 name = n;
 }


 void display (){System.out.println(rollno+" "+name+" "+college);}

 public static void main(String args[]){
 Student9.change();

 Student9 s1 = new Student9 (111,"Karan");
 Student9 s2 = new Student9 (222,"Aryan");
 Student9 s3 = new Student9 (333,"Sonoo");

 s1.display();
 s2.display();
 s3.display();
 }
 }
 //Program to get cube of a given number by static m
ethod

 class Calculate{
 static int cube(int x){
 return x*x*x;
 }

 public static void main(String args[]){
 int result=Calculate.cube(5);
 System.out.println(result);
 }
 }
 There are two main restrictions for the static
method. They are:
◦ 1. The static method can not use non static data
member or call non-static method directly.
◦ 2. this and super cannot be used in static context.
 class A{
 int a=40;//non static

 public static void main(String args[]){
 System.out.println(a);
 }
 }
 Ans) because object is not required to call
static method if it were non-static method,
jvm create object first then call main()
method that will lead the problem of extra
memory allocation.
 Is used to initialize the static data member.
 It is executed before main method at the time
of classloading.
 class A2{
 static{System.out.println("static block is invo
ked");}
 public static void main(String args[]){
 System.out.println("Hello main");
 }
 }
 Output:static block is invoked
 Hello main
 Ans) Yes, one of the way is static block but in
previous version of JDK not in JDK 1.7.
 class A3{
 static{
 System.out.println("static block is invoked");
 System.exit(0);
 }
 }
 Output:static block is invoked (if not JDK7)
 In JDK7 and above, output will be:
 Output:Error: Main method not found in class
A3, please define the main method as: public
static void main(String[] args)

More Related Content

PPTX
MULTI THREADING IN JAVA
PPTX
Classes objects in java
PDF
Java I/o streams
PPT
Java static keyword
PDF
Java IO
PPTX
File handling
PPTX
Java abstract class & abstract methods
MULTI THREADING IN JAVA
Classes objects in java
Java I/o streams
Java static keyword
Java IO
File handling
Java abstract class & abstract methods

What's hot (20)

PPTX
JAVA AWT
PPTX
Static keyword ppt
PPT
Exception Handling in JAVA
PPS
Wrapper class
PPTX
Interface in java
PDF
07 java collection
PPTX
Control Statements in Java
PPT
Method overriding
PDF
Arrays in Java
PPTX
Java Strings
PPTX
Java exception handling
PPT
Core java concepts
PPTX
Java - Collections framework
PPT
JDBC – Java Database Connectivity
PPTX
Form Validation in JavaScript
PDF
Java Garbage Collection - How it works
PPTX
Inner classes in java
PPT
Final keyword in java
PPTX
Java swing
PPTX
String, string builder, string buffer
JAVA AWT
Static keyword ppt
Exception Handling in JAVA
Wrapper class
Interface in java
07 java collection
Control Statements in Java
Method overriding
Arrays in Java
Java Strings
Java exception handling
Core java concepts
Java - Collections framework
JDBC – Java Database Connectivity
Form Validation in JavaScript
Java Garbage Collection - How it works
Inner classes in java
Final keyword in java
Java swing
String, string builder, string buffer
Ad

Viewers also liked (20)

PPTX
Java static keyword
PPT
Java access modifiers
PPTX
Super keyword in java
PPTX
Super keyword in java
PPTX
Super keyword in java
PPTX
Java(Access Modifiers)
PDF
Java keywords
PPTX
Access modifiers in java
PPTX
Visibility control in java
PDF
Java Inner Classes
PDF
Access modifiers in java
PDF
Classes and Nested Classes in Java
PPTX
Inheritance in java
PPT
Java interfaces & abstract classes
PPS
Packages and inbuilt classes of java
PPT
Packages in java
PPT
JDBC Tutorial
PPTX
Java packages
PPTX
Inheritance in JAVA PPT
PPS
Java Exception handling
Java static keyword
Java access modifiers
Super keyword in java
Super keyword in java
Super keyword in java
Java(Access Modifiers)
Java keywords
Access modifiers in java
Visibility control in java
Java Inner Classes
Access modifiers in java
Classes and Nested Classes in Java
Inheritance in java
Java interfaces & abstract classes
Packages and inbuilt classes of java
Packages in java
JDBC Tutorial
Java packages
Inheritance in JAVA PPT
Java Exception handling
Ad

Similar to 6. static keyword (20)

PPTX
Static keyword.pptx
PPT
Java static keyword
PPTX
Lecture 6.pptx
PPTX
Lecture_4_Static_variables_and_Methods.pptx
DOCX
Static variable
PDF
OOPs & Inheritance Notes
PPTX
Static Members-Java.pptx
PPTX
BCA Class and Object (3).pptx
PPTX
STATIC IN JAVA.pptx STATIC IN JaAVA.pptx
PPTX
This and Static Keyword
PDF
Class and Object JAVA PROGRAMMING LANG .pdf
PPTX
Class and Object.pptx from nit patna ece department
PPTX
11 static
PPTX
3.Classes&Objects.pptx
PPT
Static.18
PDF
Unit 2 Part 1 Constructors.pdf
PPTX
Week 3-LectureA Object Oriented Programmings.pptx
PPT
Ch. 6 -Static Class Members.ppt programming
PPTX
FINAL_DAY8_VISIBILITY_LABELS_Roles and.pptx
PDF
03_Objects and Classes in java.pdf
Static keyword.pptx
Java static keyword
Lecture 6.pptx
Lecture_4_Static_variables_and_Methods.pptx
Static variable
OOPs & Inheritance Notes
Static Members-Java.pptx
BCA Class and Object (3).pptx
STATIC IN JAVA.pptx STATIC IN JaAVA.pptx
This and Static Keyword
Class and Object JAVA PROGRAMMING LANG .pdf
Class and Object.pptx from nit patna ece department
11 static
3.Classes&Objects.pptx
Static.18
Unit 2 Part 1 Constructors.pdf
Week 3-LectureA Object Oriented Programmings.pptx
Ch. 6 -Static Class Members.ppt programming
FINAL_DAY8_VISIBILITY_LABELS_Roles and.pptx
03_Objects and Classes in java.pdf

More from Indu Sharma Bhardwaj (18)

PPTX
PPT
Ui design final
PPT
Software re engineering
PPT
Software project management 3
PPT
Software project management
PPT
Software process and project metrics
PPT
Software maintenance
PPT
Software resuse
PPT
Risk analysis
PPT
Design final
PPT
PPTX
10 common english mistakes
PPTX
4. method overloading
PPTX
2. hello java
PPTX
1 .java basic
Ui design final
Software re engineering
Software project management 3
Software project management
Software process and project metrics
Software maintenance
Software resuse
Risk analysis
Design final
10 common english mistakes
4. method overloading
2. hello java
1 .java basic

Recently uploaded (20)

PPTX
Tartificialntelligence_presentation.pptx
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
A comparative analysis of optical character recognition models for extracting...
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPTX
TLE Review Electricity (Electricity).pptx
PPTX
OMC Textile Division Presentation 2021.pptx
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PPTX
1. Introduction to Computer Programming.pptx
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Encapsulation theory and applications.pdf
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
Tartificialntelligence_presentation.pptx
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
A comparative analysis of optical character recognition models for extracting...
Programs and apps: productivity, graphics, security and other tools
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Advanced methodologies resolving dimensionality complications for autism neur...
TLE Review Electricity (Electricity).pptx
OMC Textile Division Presentation 2021.pptx
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
1. Introduction to Computer Programming.pptx
Diabetes mellitus diagnosis method based random forest with bat algorithm
Encapsulation theory and applications.pdf
Assigned Numbers - 2025 - Bluetooth® Document
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Univ-Connecticut-ChatGPT-Presentaion.pdf
gpt5_lecture_notes_comprehensive_20250812015547.pdf

6. static keyword

  • 1.  Static variable  Program of counter without static variable  Program of counter with static variable  Static method  Restrictions for static method  Why main method is static ?  Static block  Can we execute a program without main method ?
  • 2.  The static keyword in java is used for memory management mainly. We can apply java static keyword with variables, methods, blocks and nested class. The static keyword belongs to the class than instance of the class.
  • 3.  The static can be: ◦ variable (also known as class variable) ◦ method (also known as class method) ◦ block ◦ nested class
  • 4.  If you declare any variable as static, it is known static variable. ◦ The static variable can be used to refer the common property of all objects (that is not unique for each object) e.g. company name of employees,college name of students etc. ◦ The static variable gets memory only once in class area at the time of class loading.
  • 5.  It makes your program memory efficient (i.e it saves memory).
  • 6.  class Student{  int rollno;  String name;  String college="ITS";  }  Suppose there are 500 students in my college, now all instance data members will get memory each time when object is created.All student have its unique rollno and name so instance data member is good.Here, college refers to the common property of all objects.If we make it static,this field will get memory only once.  Java static property is shared to all objects.
  • 7.  //Program of static variable   class Student8{  int rollno;  String name;  static String college ="ITS";   Student8(int r,String n){  rollno = r;  name = n;  }  void display (){System.out.println(rollno+" "+name+" "+co llege);} 
  • 8.   public static void main(String args[]){  Student8 s1 = new Student8(111,"Karan");  Student8 s2 = new Student8(222,"Aryan");   s1.display();  s2.display();  }  }
  • 10.  In this example, we have created an instance variable named count which is incremented in the constructor. Since instance variable gets the memory at the time of object creation, each object will have the copy of the instance variable, if it is incremented, it won't reflect to other objects. So each objects will have the value 1 in the count variable.
  • 11.  class Counter{  int count=0;//will get memory when instance is created   Counter(){  count++;  System.out.println(count);  }   public static void main(String args[]){   Counter c1=new Counter();  Counter c2=new Counter();  Counter c3=new Counter();   }  }
  • 12.  As we have mentioned above, static variable will get the memory only once, if any object changes the value of the static variable, it will retain its value.
  • 13.  class Counter2{  static int count=0;//will get memory only once and retain its value   Counter2(){  count++;  System.out.println(count);  }   public static void main(String args[]){   Counter2 c1=new Counter2();  Counter2 c2=new Counter2();  Counter2 c3=new Counter2();   }  }
  • 14.  If you apply static keyword with any method, it is known as static method. ◦ A static method belongs to the class rather than object of a class. ◦ A static method can be invoked without the need for creating an instance of a class. ◦ static method can access static data member and can change the value of it.
  • 15.  //Program of changing the common property of all objects(static field).   class Student9{  int rollno;  String name;  static String college = "ITS";   static void change(){  college = "BBDIT";  }   Student9(int r, String n){  rollno = r;  name = n;  }  
  • 16.  void display (){System.out.println(rollno+" "+name+" "+college);}   public static void main(String args[]){  Student9.change();   Student9 s1 = new Student9 (111,"Karan");  Student9 s2 = new Student9 (222,"Aryan");  Student9 s3 = new Student9 (333,"Sonoo");   s1.display();  s2.display();  s3.display();  }  }
  • 17.  //Program to get cube of a given number by static m ethod   class Calculate{  static int cube(int x){  return x*x*x;  }   public static void main(String args[]){  int result=Calculate.cube(5);  System.out.println(result);  }  }
  • 18.  There are two main restrictions for the static method. They are: ◦ 1. The static method can not use non static data member or call non-static method directly. ◦ 2. this and super cannot be used in static context.  class A{  int a=40;//non static   public static void main(String args[]){  System.out.println(a);  }  }
  • 19.  Ans) because object is not required to call static method if it were non-static method, jvm create object first then call main() method that will lead the problem of extra memory allocation.
  • 20.  Is used to initialize the static data member.  It is executed before main method at the time of classloading.
  • 21.  class A2{  static{System.out.println("static block is invo ked");}  public static void main(String args[]){  System.out.println("Hello main");  }  }  Output:static block is invoked  Hello main
  • 22.  Ans) Yes, one of the way is static block but in previous version of JDK not in JDK 1.7.  class A3{  static{  System.out.println("static block is invoked");  System.exit(0);  }  }  Output:static block is invoked (if not JDK7)
  • 23.  In JDK7 and above, output will be:  Output:Error: Main method not found in class A3, please define the main method as: public static void main(String[] args)