| Author |
HeadFirstJava - SimpleDotCom
|
Negru Ionut Valentin
Greenhorn
Joined: Mar 04, 2009
Posts: 21
|
|
Hello to everyone!
I recently started reading HFJ - very good book, but now i'm stuck!
I can't compile this program - SimpleDotCom.
I have 3 classes:
and
I get this error when i compile the second one ... for about 2 hours i try to figure out what is the problem but i can;t .
Please help.
|
 |
Christophe Verré
Sheriff
Joined: Nov 24, 2005
Posts: 14669
|
|
Read the error message carefully :
SimpleDotComGame.java:14: cannot find symbol
symbol : method getUserInput(java.lang.String)
location: class GameHelper
String guess = helper.getUserInput("Incearca un numar: ");
Now ask yourself : What type is helper ? Is there a method called getUserInput in that class ?
|
[My Blog]
All roads lead to JavaRanch
|
 |
kannan vinayagam Duraiswamy
Ranch Hand
Joined: Jan 12, 2009
Posts: 52
|
|
|
see the method name in the GeameHelper : it is getUerInput not getUserInput
|
Kannan.DV
|
 |
Negru Ionut Valentin
Greenhorn
Joined: Mar 04, 2009
Posts: 21
|
|
Thanks guys ... it was that typing error ... i thought it was something like that but i didn't discovered it.
Thanks again.
|
 |
 |
|
|
subject: HeadFirstJava - SimpleDotCom
|
|
|