Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
822 views
in Technique[技术] by (71.8m points)

generics - Why is instanceof operator allowed on an unbounded wild card type but not on other parameterized types in Java?

I think due to type erasure , using instanceof and class literals are not allowed for parameterized generic types except unbounded wild card types . Why did the Java language designers allowed this exception ? There isn't any role of type erasure for unbounded wild card types ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

The point is that an object knows its concrete class - but not the generic type arguments for that. So if we construct an ArrayList<Integer>, that knows at execution time that it's an ArrayList of some kind - but it doesn't know about the Integer part.

The "ArrayList of some kind" part is precisely what ArrayList<?> means, which is why:

if (foo instanceof ArrayList<?>)

is valid. It's just equivalent to using the raw type:

if (foo instanceof ArrayList)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...