Why we use static and synchronized in method for single
thread model
example:
public static synchronized add(){}

Answers were Sorted based on User's Feedback



Why we use static and synchronized in method for single thread model example: public static syn..

Answer / deepak verma

Synchronized static method means, the lock belongs to the
class, no other thread can access any static synchronized
method of this class when one thread already holds the lock
of that class.

This class lock is independent of locks on its object. For eg :

Class A {
public static synchronized add() {}

public synchronized void someMethod() {}
}

Here add() and someMethod() can be called concurrently as
add() is having class lock whereas someMethod() having
object lock.

Is This Answer Correct ?    1 Yes 0 No

Why we use static and synchronized in method for single thread model example: public static syn..

Answer / sameer

Ststic means it belongs to class.When u call a syncronized
method u keep the luck of that class.

Is This Answer Correct ?    2 Yes 4 No

Post New Answer

More Core Java Interview Questions

What is consumer interface?

0 Answers  


which pattern is default in scanner package?

0 Answers   Satyam,


Does windows 10 need java?

0 Answers  


how we can make a read-only class in java?

0 Answers  


Explain public static void main(string args[]) in java.

0 Answers  


How are java objects passed to a method and what are native methods?

0 Answers   Genpact,


Explain what do you mean by functional overloading in java?

0 Answers   Maveric, Verifone,


write SQL command for table employee where print first name or last name start like "A" and who is working in domain(angular js,java,dotnet)

1 Answers  


What value is a variable of the string type automatically initialized?

0 Answers  


Explain the private protected method modifier?

0 Answers  


What are the drawbacks for singleton class?

0 Answers  


Explain about features of local inner class?

0 Answers  


Categories