vote up 2 vote down star

What is this error? "cannot find symbol, symbol: method getstring(java.lang.String) Location: class InternalFrameDemo if

flag

5 Answers

vote up 2 vote down

it means that the class InternalFrameDemo has no getstring() method - shouldn't that be "getString" with an uppercase "S"?

link|flag
vote up 1 vote down

Maybe it's saying that there isn't a method in InteranlFrameDemo called getstring that takes a String argument. Possibly is the method supposed to be getString("mystring")?

method names are case-sensitive in java, which is why I'm guessing this

link|flag
vote up 0 vote down

Perhaps getstring() should be getString()?

Basically it is saying InternalFrameDemo has no getstring() method.

link|flag
vote up 11 vote down

Java is case-sensitive. Because "getstring" is not equal to "getString", the compiler thinks the "getstring" method does not exist in the InternalFrameDemo class and throws back that error.

In Java, methods will generally have the first letter of each word after the first word capitalized (e.g. toString(), toUpperCase(), etc.), classes will use Upper Camel Case (e.g. ClassName, String, StringBuilder) and constants will be in all caps (e.g. MAX_VALUE)

link|flag
vote up 0 vote down

It's just because Java is case sensitive. Try getString() instead of getstring(). Java generally uses Camel notation.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.