In java what is the difference between sleep() and wait() .


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Java Related AllOther Interview Questions

Do I need both jdk and jre?

0 Answers  


Can a dead thread be started again?

0 Answers  


What happens if javac is not recognized?

0 Answers  


What is meant by annotation in java?

0 Answers  


What are all the documents have you involved in preparation of a Project as a Project Lead?

2 Answers  






Which is more secure: java or activex? : java security

0 Answers  


Employee has a Passport. here employee is an object and passport is an object, give the class design

3 Answers  


In which language eclipse is developed?

0 Answers  


What is java net url?

0 Answers  


What's the difference between local, global and universal groups? : java security

0 Answers  


What is a java singleton?

0 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  


Categories