Is there a Java equivalent or methodology for the typedef keyword in C++?

bn. picture bn. · Jul 28, 2009 · Viewed 118.6k times · Source

Coming from a C and C++ background, I found judicious use of typedef to be incredibly helpful. Do you know of a way to achieve similar functionality in Java, whether that be a Java mechanism, pattern, or some other effective way you have used?

Answer

cletus picture cletus · Jul 28, 2009

Java has primitive types, objects and arrays and that's it. No typedefs.