If your team member writes code with lots of static
variables and static methods, will it cause any side effects?
Answer Posted / eknath wagadre
Yes!!! We can define the several static method and variable
and those are vary easy to access by Class Name or by class
instance.
But Only problem with static method and variable is that
there is Maximum chance of data corruption. bcz of static
method and variable are accessed by diff-2 thread at the
same time. Mean at the same time one or more then one thread
can change the value of static variable.
So conclusion is this if we can define more static variable
and method so and our program have hug line of code at that
time programs output may be inconsistent.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the legal operands of the instanceof operator?
Is 0 an irrational number?
Why parsing is done?
What is balanced tree in java?
What are class types in java?
Can we have return statement in finally clause? What will happen?
Difference between error and exception
Why we override equals() method?
What about main() method in java ?
What are java methods?
Can we write class inside a class in java?
If a method is declared as protected, where may the method be accessed?
How do you clear a list in java?
Does sprintf allocate memory?
List down the methods and interfaces of collection class in java.