Re: Where are the java help files?



"grocery_stocker" wrote:
Is there some kind of standard help file (on unix) that would tell me
what function belongs to what? Like say for example, I don't know where
the java sqrt() function is. Is there any kind of help mechanism (like
a man page) that would tell me that is part of Math? Or do I just have
to memorize what java functions belong to what class?

Use the API doc <http://java.sun.com/j2se/1.5.0/docs/api/index.html>,
at the top click "Index", click "S", scroll down to "sqrt".

--
Thomas


.