Strange compilation message
I searched the archives but didn't find anything for this strange compilation message:
[noparse][[/noparse]Java Error] Foo.java(0): Error: Type java/lang/Double was not found
Also, I didn't find it in the Javelin IDE Error Codes that have been posted.
Any ideas?
[noparse][[/noparse]Java Error] Foo.java(0): Error: Type java/lang/Double was not found
Also, I didn't find it in the Javelin IDE Error Codes that have been posted.
Any ideas?
Comments
Getting Error: Type java/lang/Double was not found.
Also getting [noparse][[/noparse]Java Error] myprog.java(0) Error: Type java/lang/Character was not found.
Any ideas ?
used in pc java are available. Please post the java file that
generated the error.
regards peter
The character issue was trying to append a char to a String
char atSign = [url=mailto:'@']'@'[/url];
String domain = "yahoo.com";
String s1 = atSign + domain;· // Error
The Double issue had to do with·some nested methods. The methods work, but nesting doesn't.
System.out.println(winner(game(1,2));
Thanks for being the unintentional guru peter!