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 |
How long can a lambda function run?
Is jprofiler open source?
Explain working of java virtual machine (jvm)?
why the sleep method does not leave the lock and wait method leave the lock
What is adoptopenjdk?
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.
What is stateless object in java?
What is the difference between swing and awt components?
What is jpa implementation?
what is the difference between Collaboration and Java Collaboration definition interms of JAVACAPS terminology?
What is a stream in programming?
Why is struts used in java?