Is the following valid in Java:
public Vector <Object> objVector = new Vector <Object>(50);
I know by default the values are stored as objects, but I would like to know how to restrain the contents by type...
Thanks
|
|
I think what you are looking for are generics:
|
|||
|
|
|
This is ancient code. Use Generics, and use modern collection types (don't use Vector), then you get compile-time checks automatically:
|
|||||||||||
|
Simply specify the type while instantiating the vector:
Using generics you can specify a hierarchy based type restriction:
In the last example TYPE can be any type that extends SomeType (SomeType included). You can use the keyword implements, to restrict TYPE's type to interfaces instead of classes. |
|||
|
|