vote up 10 vote down star
1

Is there a good reason why there is no Pair in Java? What would be the equivalent of this C++ construct? I would rather avoid reimplementing my own.

It seems that 1.6 is providing something similar (AbstractMap.SimpleEntry), but this looks quite convoluted.

flag

5 Answers

vote up 12 vote down check

In this thread on comp.lang.java.help, Hunter Gratzner gives some arguments against the presence of a Pair construct in Java. The main argument is that a class Pair doesn't convey any semantics about the relationship between the two values (how do you know what "first" and "second" mean ?).

A better practice is to write a very simple class, like the one Mike proposed, for each application you would have made of the Pair class. Map.Entry is an example of a pair that carry its meaning in its name.

To sum up, in my opinion it is better to have a class Position(x,y), a class Range(begin,end) and a class Entry(key,value) rather than a generic Pair(first,second) that doesn't tell me anything about what it's supposed to do.

link|flag
Does java not have typedefs? – tfinniga Oct 1 '08 at 22:07
2  
@tfinniga: it does not. – sixlettervariables Oct 1 '08 at 22:32
I think the AbstractPair<F,S> idea from that thread is excellent – Craig Oct 10 '08 at 12:02
Question: So you'd not prefer var range = new pair<int, int>(); at all? or ever use it. – CasperT Sep 27 at 12:21
It all depends on your application. If I scarcely use ranges, then I could choose having pair objects named 'range'. However, it might be better to have 'range' denote a (possibly generic) type and create objects of that type, e.g. Range<double> confidenceInterval, Range<Iterator> inputSequence and so on. As always, there is not a one-fit-all solution, but the more information I get when looking at my code, the better it is. – Luc Touraille Sep 28 at 8:38
show 1 more comment
vote up 6 vote down

It depends on what you want to use it for. The typical reason to do so is to iterate over maps, for which you simply do this (Java 5+):

Map<String, Object> map = ... ; // just an example
for (Map.Entry<String, Object> entry : map.entrySet()) {
  System.out.printf("%s -> %s\n", entry.getKey(), entry.getValue());
}
link|flag
vote up 2 vote down

Here's a Java Pair<> class I just now stole from Wikipedia (so I can't vouch for how good it is):

public class Pair<T, S>
{
  public Pair(T f, S s)
  { 
    first = f;
    second = s;   
  }

  public T getFirst()
  {
    return first;
  }

  public S getSecond() 
  {
    return second;
  }

  public String toString()
  { 
    return "(" + first.toString() + ", " + second.toString() + ")"; 
  }

  private T first;
  private S second;
}
link|flag
1  
Chris's critique time! 1. There's really no reason to keep the fields private, or to have getters. Just make them public, like std::pair. 2. the toString() method calls are all redundant in this case. 3. Why T and S? Why not T1 and T2? – Chris Jester-Young Oct 1 '08 at 5:03
I can't be bothered to edit Wikipedia at this time, so I've decided to just critique it here. :-P – Chris Jester-Young Oct 1 '08 at 5:03
Have at it! Just try not to blame me... – Michael Burr Oct 1 '08 at 5:42
vote up 1 vote down

The problem is that "pair" usually does not indicate very well what exactly the relationship between the two objects is.

For instance, in a map in c++ you insert a pair to add a value, but you really are just saying you want to put a value in the map, which you later want to retrieve using a particular key. This key may or may not already exist in that map.

Is there any particular reason you need a pair type?

link|flag
2  
"Is there any particular reason you need a pair type?" One good reason would be to have a typesafe way to return two values from a method. – Thilo Aug 28 at 9:24
vote up 2 vote down

HashMap compatible Pair class:

public class Pair<A, B> {
    private A first;
    private B second;

    public Pair(A first, B second) {
    	super();
    	this.first = first;
    	this.second = second;
    }

    public int hashCode() {
    	int hashFirst = first != null ? first.hashCode() : 0;
    	int hashSecond = second != null ? second.hashCode() : 0;

    	return (hashFirst + hashSecond) * hashSecond + hashFirst;
    }

    public boolean equals(Object other) {
    	if (other instanceof Pair) {
    		Pair otherPair = (Pair) other;
    		return 
    		((  this.first == otherPair.first ||
    			( this.first != null && otherPair.first != null &&
    			  this.first.equals(otherPair.first))) &&
    		 (	this.second == otherPair.second ||
    			( this.second != null && otherPair.second != null &&
    			  this.second.equals(otherPair.second))) );
    	}

    	return false;
    }

    public String toString()
    { 
           return "(" + first + ", " + second + ")"; 
    }

    public A getFirst() {
    	return first;
    }

    public void setFirst(A first) {
    	this.first = first;
    }

    public B getSecond() {
    	return second;
    }

    public void setSecond(B second) {
    	this.second = second;
    }
}
link|flag
1  
You probably want to delete the setters, and make first and second final, thus making the pair immutable. (If someone changed the components after using them as a hash key, weird things will happen). – Thilo Aug 28 at 9:21
1  
return "(" + first.toString() + ", " + second.toString() + ")" in toString() method may throw NullPointerExceptions. This is better: return "(" + first + ", " + second + ")"; – Juha Syrjälä Sep 1 at 8:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.