Question: final IntPair p = new DefaultIntPair(3,5); final IntPair q = new DefaultIntPair(5,3); assertTrue(p.first(==3); assertTrue(p.second()==5) assertEquals(11 <3,5>11,p.toString()); assertTrue(p.equals(p)); assertFalse(p.equals(q)); assertFalse(q.equals(p)); assertFalse(p.equals( null)); assertTrue(p.equals(q.reverse()); Reverse-engineer the IntPair

final IntPair p = new DefaultIntPair(3,5);

final IntPair q = new DefaultIntPair(5,3);

assertTrue(p.first(==3);

assertTrue(p.second()==5)

assertEquals(11<3,5>11,p.toString());

assertTrue(p.equals(p));

assertFalse(p.equals(q));

assertFalse(q.equals(p));

assertFalse(p.equals( null));

assertTrue(p.equals(q.reverse());

Reverse-engineer the IntPair interface in a way that is consistent with the test shown above. Leave out any methods already provided by the classs java.lang.object.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!