Is java Class Thread safe ???? How to make java Class Thread
safe ??



Is java Class Thread safe ???? How to make java Class Thread safe ??..

Answer / avinash pandey

NO Java class is not Thread Safe , for making thread safe to
Java class we have to use either Synchronized method or
Synchronized block...

Is This Answer Correct ?    28 Yes 1 No

Post New Answer

More Java Related AllOther Interview Questions

How long can a lambda function run?

1 Answers  


Is jprofiler open source?

1 Answers  


Explain working of java virtual machine (jvm)?

1 Answers  


why the sleep method does not leave the lock and wait method leave the lock

4 Answers  


What is adoptopenjdk?

1 Answers  


public class Dog { private int weight; public int getweight(){ return weight; } public void SetWeight(int newWeight){ if (newWeight > 0){ weight = newWeight; } } } public class TestDog { public static void main(String[] args) { Dog d = new Dog(); System.out.println("Dog d's weight is " + d.getWeight()); d.setWeight(42); System.out.println("Dog d's weight is " + d.getWeight()); d.setweight(-42); System.out.println("Dog d's weight is " + d.getWeight()); } } class dog is compiled but there is an error in class TestDog when compiled and the error is with dot notations. I want to kmow why there is error in testdog class when compiled.

3 Answers  


What is stateless object in java?

1 Answers  


What is the difference between swing and awt components?

1 Answers  


What is jpa implementation?

1 Answers  


what is the difference between Collaboration and Java Collaboration definition interms of JAVACAPS terminology?

1 Answers   CSC,


What is a stream in programming?

1 Answers  


Why is struts used in java?

1 Answers  


Categories