| Author |
uncheked or unsafe operations
|
akashvinay vinaydeo
Greenhorn
Joined: Nov 02, 2008
Posts: 1
|
|
hey while comiling the following code from Head First servlets & JSP page no.82 i am getting following error BeerExpert.java uses unsafe or unchecked operations Recompile with -Xlint:unchked for details please help: akash.deo@iiitb.net
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32668
|
|
Welcome to JavaRanch That's not an error, but a warning. If you recompile with javac -Xlint:unchecked BeerExpert.java it will tell you what it thinks the problem is. What it means is that there is a risk of your putting something into the Lists and trying to get it out as a different type, in which case there will be a ClassCastException thrown. That sort of warning only started appearing when Java5 was introduced in Autumn 2004. It can be obviated by using generics, but that is probably too advanced a topic for the earlier pages of a Head First book. By the way: was that book printed before Autumn 2004?
|
 |
 |
|
|
subject: uncheked or unsafe operations
|
|
|