If your team member writes code with lots of static
variables and static methods, will it cause any side effects?
Answers were Sorted based on User's Feedback
Answer / abhinav
If the code is small, then there wont be any significant
problems, but if the program is huge, then it can severly
hamper the program performance. use of static
variables/methods are one of the biggest reasons for memory
leaks
| Is This Answer Correct ? | 6 Yes | 2 No |
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 |
How do you start a new line in java?
what is generics in jdk1.5?
What is map and hashmap? also tell the difference.
is java support call by reference and call by value, if supports please explain?
Detail discussions on JVM, memory management and garbage collector.
Can we add two byte variables and assign the result to a byte variable ? b=b1+b2 where b,b1,b2 are byte types
What is locale in java?
why the abstract class has default constructor?
What is matcher in java?
What error occurs if a try-catch-finally statement sequence does not have a catch clause?
What are latest features introduced with java 8?
. Explain Java String Pool.