+ 17
What does it mean when the program says 'cannot find symbol'
4 Answers
+ 7
Can you please post your code ??
It would be easier to find out the error ......
+ 6
it is a compilation error.
1. Check if you have forgotten any 'new' operator during object creation
You forgot a new, like this:
String s = String();
, which should be
String s = new String();
2. Check if you call methods using wrong name
--------------------
Without knowing your code, its difficult .. Add it if you want in code playground
+ 3
+ check if this name of symbol or eg variable can exist or is visible in actual scope
0
word class anonimose team