let say i have this code

Map<String, String> list = new HashMap<String, String>();
list.put("number1", "one");
list.put("number2", "two");

how can i make some "alias" the type

Map<String, String>

to something that easier to be rewritten like

// may be something like this
theNewType = HashMap<String, String>;

theNewType list = new theNewType();
list.put("number1", "one");
list.put("number2", "two");

basically my question is, how to create "alias" to some "type", so i can make it easier to write and easier when need to change the whole program code.

Thanks, and sorry if this is silly question. I'm kinda new in Java.

link|improve this question

38% accept rate
feedback

5 Answers

up vote 9 down vote accepted

There are no aliases in Java. You can extend the HashMap class with your class like this:

public class TheNewType extends HashMap<String, String> {
    // default constructor
    public TheNewType() {
        super();
    }
    // you need to implement the other constructors if you need
}

But keep in mind that this will be a class it won't be the same as you type HashMap<String, String>

link|improve this answer
1  
@Lee - KARASZI István's caveat about types is important - see ibm.com/developerworks/java/library/j-jtp02216/index.html – McDowell Apr 9 '11 at 11:36
thank you. I'm using this for the moment. this helps a lot. – Lee Apr 10 '11 at 4:05
Then you can accept the answer :) – KARASZI István Apr 10 '11 at 14:30
feedback

AFAIK, there is no typedef equivalent in Java, and there is no common idiom for aliasing types. I suppose you could do something like

Class StringMap extends HashMap<String, String>{}

but this is not common and would not be obvious to a program maintainer.

link|improve this answer
1  
+1 - and it is a new type not a type alias. – Stephen C Apr 9 '11 at 10:19
thanks for the helps. it does help a lot. – Lee Apr 10 '11 at 4:05
feedback

Nothing like that exists in Java. You might be able to do something with IDE templates or autocompletion, and look forward to (limited) generics type inference in Java 7.

link|improve this answer
feedback

Well, basically your looking for type inference (diamond in java 7). You could easily wrap Hashmap in a class called DoubleStringMap or whatever and delegate all calls, but I dont think its worth it.

link|improve this answer
feedback

The closest one could think of is to make a wrapper class like so

class NewType extends HashMap<String, String> {
     public NewType() { }
}

I really wish Java had a sound type aliasing feature.

link|improve this answer
thanks for the helps. it does help a lot. – Lee Apr 10 '11 at 4:06
feedback

Your Answer

 
or
required, but never shown

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