> while (ii < args.lenth ){ // error with this
^^
length is a pseduo-field on array primitives, not a method.
lenth is a typo. The compiler will accept one and not the
other. :)
I'd suggest looking into a more general Java newsgroup,
as this has nothing to do wit
> while (ii < args.lenth ){ // error with this
I don't know if this is just a typo or not, but you should be looking at
args.length, not args.lenth
Regards,
Paul
Paul Gearon
[EMAIL PROTECTED]
Catapultam habeo. Nisi pecuniam omnem mihi dabis, ad caput tuum saxum
immane mittam.
(Tr
Hi ,
Sorry for the post. I'm blind tonight . All is well.
Jonathan
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Hi,
I just put up jdk117_v3 on a Linux box running RH5.2.
My first tests have been examples from David Flanagan: JAVA
Examples. All was well
until I tried to use a method
snip---
/**
*Echo.java
*java implementation of simplest "echo".
* from java examples
**/
//