Talk:Wildcard (Java)
Appearance
Code
May be wildcardReference should be better initialized?
If not, javac can complain with an error:
- "variable wildcardReference might not have been initialized"
I would code it this way:
Generic<?> wildcardReference=new Generic(); // new Generic<>() prohibited as explained in section 'Object Creation with Wildcard'
--idleloop (talk) 18:46, 18 December 2011 (UTC)
Bounded Wildcards
I am a newbie in Java programming, not yet enough comfortable to edit section Wildcard (Java)#Bounded Wildcards. However, I have some ideas that may improve these explanations :
- Add sub-sections
- Upper boun
- Lower bound
- Both bounds
- Give examples as done for Generics in Java#Type wildcards
- Reduce Generics in Java#Type wildcards explanations (once, all the good stuff from Generics in Java#Type wildcards is moved to Wildcard (Java)#Bounded Wildcards)