If you’re overriding the method equals() of an object, which other method you might also consider?


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

Post New Answer

More Java Related AllOther Interview Questions

What is singleton pattern in java?

0 Answers  


Is eclipse a jdk?

0 Answers  


Explain different way of using thread?

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  


Is php faster than java?

0 Answers  






What is java persistence api used for?

0 Answers  


Explain about the Physical Data Model?

1 Answers   HCL,


What is stateless in java?

0 Answers  


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

3 Answers  


What's a code group? : java security

0 Answers  


Who is at risk in java? : java security

0 Answers  


What is stateless object in java?

0 Answers  


Categories