Questions:
- What are raw types in Java, and why do I often hear that they shouldn't be used in new code?
- What is the alternative if we can't use raw types, and how is it better?
Questions:
Similar questions
| |||||||||||||
feedback
|
What is a raw type?The Java Language Specification defines a raw type as follows: JLS 4.8 Raw Types
Here's an example to illustrate:
Here,
What's so special about raw types?Essentially, raw types behaves just like they were before generics were introduced. That is, the following is entirely legal at compile-time.
The above code runs just fine, but suppose you also have the following:
Now we run into trouble at run-time, because Presumably, if you want
Of course, if you DO want See alsoHow's a raw type different from using
|
|
You should specify the type-parameter. The warning advises that types that are defined to support generics should be parameterized, rather than using their raw form.
| |||
|
feedback
|
Raw-types are ancient history of the Java language. In the beginning there were Collections and they held Objects nothing more and nothing less. Every operation on collections required casts from Object to the desired type.
While this worked most of the time, errors did happen
The old typeless collections could not enforce type-safety so the programmer had to remember what he stored within a collection.
For Comparison:
More complex the Compareable interface:
Note that it is impossible to implement the CompareAble interface with compareTo(MyCompareAble) with raw types. Why you should not use them:
What the compiler does: Generics are backward compatible, they use the same java classes as the raw types do. The magic happens mostly at compile time.
Will be compiled as:
This is the same code you would write if you used the raw types directly. Thought I'm not sure what happens with the CompareAble interface, I guess that it creates two compareTo functions, one taking a MyCompareAble and the other taking an Object and passing it to the first after casting it. What are the alternatives to raw types: Use generics | |||
|
feedback
|
|
A "raw" type in Java is a class which is non-generic and deals with "raw" Objects, rather than type-safe generic type parameters. For example, before Java generics was available, you would use a collection class like this:
When you add your object to the list, it doesn't care what type of object it is, and when you get it from the list, you have to explicitly cast it to the type you are expecting. Using generics, you remove the "unknown" factor, because you must explicitly specify which type of objects can go in the list:
Notice that with generics you don't have to cast the object coming from the get call, the collection is pre-defined to only work with MyObject. This very fact is the main driving factor for generics. It changes a source of runtime errors into something that can be checked at compile time. | |||||||
feedback
|
|
What is a raw type and why do I often hear that they shouldn't be used in new code? A "raw type" is the use of a generic class without specifying a type argument(s) for its parameterized type(s), e.g. using "Raw types" are used for backwards compatibility. Their use in new code is not recommended because using the generic class with a type argument allows for stronger typing, which in turn may improve code understandability and lead to catching potential problems earlier. What is the alternative if we can't use raw types, and how is it better? The preferred alternative is to use generic classes as intended - with a suitable type argument (e.g. For example, for a method where the programmer wants to ensure a List variable called 'names' contains only Strings:
| |||||||||||||
feedback
|
|
A raw-type is the a lack of generic-type. Raw-type should not be used because it could cause runtime errors, like inserting a
When retrieving the stuff from the With a generic type added to your
| ||||
|
feedback
|
|
A | |||
|
feedback
|
|
What is saying is that your In general is a better idea to parametrize the collections, so you don't have conversion problems, you will only be able to add elements of the parametrized type and your editor will offer you the appropiate methods to select.
| |||
|
feedback
|
|
The compiler wants you to write this:
because otherwise, you could add any type you like into | |||
|
feedback
|