If two threads call a static method at the same point of
time, what will happen?
Answers were Sorted based on User's Feedback
Answer / terlis
if the method is not synchronised, two threads can acees the same method at the same time and there will be inconsistency.
Is This Answer Correct ? | 9 Yes | 2 No |
Answer / ashutosh dhar
Nd if it is Synchronized then which thread to be choosen
depends upon the OS.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / amitasite
If method doesn't access static member variable but only
local variable then there is no inconsistency.
Is This Answer Correct ? | 1 Yes | 1 No |
how to transactions(Bank transactions) in business process in ejb?
Can a private method be declared as static?
Is null false in java?
Explain the importance of thread scheduler in java?
What is a loop java?
Is list thread safe in java?
What is general methodology?
How can an object be unreferenced?
What is lazy initialization in java?
Interface A { String test(); } Interface B { int test(); } Create a class AB which must implements both A & B interfaces.
what is Inheritense
is it possible to instantiate the math class?