Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
What does the <TYPE> in java mean?

In the code below, what does Iterator<V> and OutputCollector<K, V> mean? Is it a special data type?

public void reduce(K key, 
  Iterator<V> values, 
  OutputCollector<K, V> output, 
  Reporter reporter) throws IOException {
share|improve this question
Those are Generic types. Check out the tutorial, it is really helpful. download.oracle.com/javase/tutorial/extra/generics/index.html – jjnguy Aug 13 '10 at 20:22
Sort of. Those are generic types: en.wikipedia.org/wiki/Generics_in_Java – Ian Henry Aug 13 '10 at 20:23

marked as duplicate by casperOne Oct 11 '12 at 13:04

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

K stands for Key and V for Value, like in a HashMap. There isn't a Key class or a Value class that you have to instantiate or subclass, it's a semantic thing for generics. Those letters are only placeholders for whatever classes you decide should fill the Key and Value roles.

share|improve this answer

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