I have to define a List and it has two types of possible values 1)String 2)some user defined Class
How can I make a List that is type safe in that it only accepts these two types?
I want to avoid the use of raw List.
|
1
|
|||||||
|
|
|
This does what you are asking for.
|
||||
|
|
|
Please see the book Effective Java, Item 29: Consider typesafe heterogeneous containers. You might be able to adapt the ideas in that item to your specific use case. I assume that you want to use your If so, you can do something like this:
This is just simplified to show you the kinds of things you can do. Also, one caveat is that you can't put generic types into the container... why you ask? Because it is impossible to say |
||||
|
|
|
It depends on what you're using the list for... If you're going to just be using it to get Strings, you could just use:
If you're going to be using it for getting YourObject references:
|
||
|
|
|
|
My question is what is the "user defined class" supposed to be used for? Without that knowledge that is hard to give a good advise. Users are not creating classes, programmers are. Do you develop some generic framework? What is a business purpose of your lists? Is String supposed to be used as kinda default type if no user-specific class provided? In that case, can you just setup BaseUserDefinedClass, and use lists like:
|
||
|
|
|
|
Or maybe a single List that takes a custom type MyType that encapsulates your String and whatever else you need into a single abstraction. If you're thinking in terms of primitives and data structures all the time you need to raise you sights. Object-orientation is about encapsulation, abstraction, and information hiding. It sounds to me like you aren't doing enough. |
||
|
|
|
|
As kdgregory says, you probably want to rethink your approach. Maybe two lists, |
||
|
|
|
|
If you mean "type-safe" as in checking for type safety at compile time, then trying to use generics to solve this problem is going to be difficult. The primary reason is because the If subclassing
One option is to make a class which contains methods to interact with the two types, which actually contains
The problem with this approach, however, is that it won't be possible to use the One thing to think about is how to handle getting objects from this hypothetical The only way around this is going to be to provide two getters, one for each type. For example, As kdgregory's answer says, having these problems in a solution seems to indicate that it is probably not the best approach to a problem that needs to be solved. To get an idea about what generics is and what is possible and impossible with it, Lesson: Generics from The Java Tutorials would be a good start. |
||||||
|
|
|
Since From a design perspective, mixing unrelated classes in a collection is a bad idea. Think about what you're trying to accomplish, and you'll probably come up with a better approach. |
||||||||||
|
|
|
I'm not going to claim that this is a perfect solution, but I'm going to recommend that you go with a "holder" class - also called a "tagged class" by some writers (including Joshua Bloch, who says that tagged classes are "verbose, error-prone, and inefficient"). However, given your situation, I can't see a better way. The solution below provides:
Youd define your holder class like this:
class Holder {
private String foo;
private UserClass bar;
boolean isString;
boolean initialized=false;
Holder (String str) { foo = str; isString=true; }
Holder (UserClass bar) { this.bar = bar; isString=false; }
String getStringVal () {
if (! initialized) throw new IllegalStateException ("not initialized yet");
if (! isString) throw new IllegalStateException ("contents not string");
return foo;
}
// with a similar method for getUserClassVal()
...
}
Another alternative is to use an Then of course you'd have your compound list: List samsList = new ArrayList() Inserts are easy and, as you requested, compile-time type safe: samsList.add (new Holder(stringVal)); samsList.add (new Holder(userClassVal)); Retrieving values from the list is only slightly more complicated: you have to check the tag (holder.isString()) before deciding which getter to use. As an example, a foreach iteration over the list would look like this:
for (Holder holder: samsList) {
if (holder.isString())
doYourStringProcessing (holder.getStringVal());
else
doYourUserClassProcessing (holder.getUserClassVal());
}
Like I said, I'm not claiming this is perfect, but it meets your requirements will serve your needs and minimize the burden on the caller. However, I would like to point out that this feels to me as though it's probably cause to consider refactoring/redesign somewhere. One of the guidelines I follow is that whenever I find myself justifying an exception to sound practice, it deserves a lot more thought than simply "how can I do this?". Here's why: assuming that I'm right that the exception is justified in this case, there's really only two possibilities. One is that the sound practice is incomplete (so that "Prefer X over Y" should be rewritten as "Prefer X over Y except in case Z"). But much more likely is that the underlying clause is an imperfect design, and we should be thinking hard about doing some redesign/refactoring. |
|||