Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ia m getting the following error while running my SIMPLE java program [ I guess!!! ], please HELP as this will lead me to make a bigger module[ mean that i may ask more question]

**Error**
C:\Java prog>javac Testt.java
Testt.java:10: cannot find symbol
symbol  : variable charAt
location: class java.lang.String
kk=k.charAt[i];
    ^
**The program**
class Testt
{
    public static void main(String args[])
    {
        String k="my name is bhola ram";
        for(int i=0;i<10;i++)
        {
            System.out.println(k.charAt[i]);
        }
     }
}

Please help........ASAP.......

share|improve this question

2 Answers

try this:

System.out.println(k.charAt(i));

the difference is that you're using array subscripts [] rather than the parantheses required for a function call. (thanks Andy)

doc for charAt()

share|improve this answer
1  
+1: I also suggest you try an IDE as it should auto-complete this for you. – Peter Lawrey Apr 15 '11 at 16:22
@Gautum, to be explicit, the difference is that you're using array subscripts [] rather than the parantheses required for a function call. – Andy Thomas-Cramer Apr 15 '11 at 16:23
@Andy ill add that to the answer – Neal Apr 15 '11 at 16:24

charAt() is a method of the String class.

methods take parameters not indices.

The first ones are given between ( and ).

The second ones are given between [ and ], and are often used for indicating the position in an array.

The mistake is made, I suspect, because in many programming languages a String is a kind of Array of chars that can take parameters.

So MyString[2] would be valid. This is not the case in Java however, hence the charAt(). method.

share|improve this answer
Thanks @Peter,@Andy and @Neal......i guess now i know where i was wrong..... – Gautam Apr 19 '11 at 14:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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