What is Static Variable in Java #37

1. Static Variable Start with Static Keyword
2. static variable will be shared by all the objects, means if we change value using one object it get change for all object.
3. static variable we need to call using there class name 
   as Mobile.name  - where mobile is the name of class

Leave a Reply

Your email address will not be published. Required fields are marked *