What are the advantages and disadvantages of static variables and static methods ?
Questions
Search
List By Company
List By Topic
Legacy
Tests
Repository
DashBoard
Java
Java 8
Java 7
Java Abbreviations
OCJP / SCJP
Class List
New in Java 8
Java Exceptions
Spring Exceptions
Java Enums
Java 8 Lambda
Java 8 java.time
Big Data
Best Of Java
Discussion
Search
Subscribe
Search Interview Questions
More than 3000 questions in repository.
There are more than 900 unanswered questions.
Click here
and help us by providing the answer.
Have a video suggestion.
Click Correct / Improve and please let us know.
Label / Company
Label / Company / Text
Search
Submit Question
Interview Questions and Answers
Q1.
What are the advantages and disadvantages of static variables and static methods ?
Core Java
Ans. Advantages
Can do meta object operations ( like validating something before creating objects , keep count of number of objects )
Can do operations which have nothing to do with objects but still you want them to be tied to Class.
Disadvantages
Commonly used to static variables sometime leads to problems due to access by different objects.
Are not tied to objects so doesn't reflect pure Object Oriented approach.
Needs to be synchronized so as to avoid update conflicts by mutiple objects and threads.
Some limitation in testing as not all frameworks have facility to mock them. Powermock has but Mockito doesnt
Help us improve. Please let us know the company, where you were asked this question
:
Like
Discuss
Correct / Improve
 java   static   static variables   static methods
Correction
Duplicate of Another Question
Company where this question was Asked
Suggestion
Related Questions
How can we run a java program without making any object?
Which of the following combination of keywords is illegal in Java ?
a. static and transient
b. transient and final
c. static and synchronized
d. abstract and final
What are concepts introduced with Java 5 ?
Why do we write public static void main ? Can we use some other syntax too for main ?
Difference between Static and Singleton Class ?
Can we declare static variables as transient ?
Which of the following can be marked static ?
a. Methods , Variables and Initialization Blocks.
b. Methods , Variables , Initialization Blocks and Outer Classes and nested Classes.
c. Methods , Variables , Initialization Blocks and Outer Classes.
d. Methods , Variables , Initialization Blocks and nested Classes
What is the difference between the following two code lines ?
1. new OuterClass().new InnerClass();
2. new OuterClass.InnerClass();
Can we access instance variables within static methods ?
Help us and Others Improve. Please let us know the questions asked in any of your previous interview.
Any input from you will be highly appreciated and It will unlock the application for 10 more requests.
Company Name:
Questions Asked: