Problem while compiling!!!

hi all,

I am doing simple java programs using vector or ArrayList . After compilation, it gives the following warning

Note: Recompile with -Xlint:unchecked for details.

why is this warning is being displayed?

[234 byte] By [java@mania] at [2007-11-27 10:54:40]
# 1

You're using at least Java 1.5 and ignoring the Generics.

Start here:

http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf

http://java.sun.com/docs/books/tutorial/extra/generics/index.html

Or if you refuse to implement Generics and want to get rid of those warnings, then recompile with the given parameter.

BalusCa at 2007-7-29 11:51:37 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

hi Balus C,

Thanks was able to understand the problem related to generic.

java@mania at 2007-7-29 11:51:37 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3

hi Balus C,

Thanks was able to understand the problem related to generic.

java@mania at 2007-7-29 11:51:37 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...