在我的代码中String类的charAt()方法中出现错误

时间:2019-05-14 18:18:51

标签: java

我正在使用charAt()方法从Java字符串获取字符,但是在编译时出现错误,提示“找不到符号charAt(int)。

我的代码中没有拼写错误或缺少括号。

class GFG {
public static void main (String[] args) throws IOException
{
    //code
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    int T = Integer.parseInt(br.readLine());
    while(T-- > 0)
    {
        String[] s = br.readLine().split("\\s");
        int N = Integer.parseInt(s[0]);
        int S = Integer.parseInt(s[1]);

        s = br.readLine().split("\\s");  
        int[] arr = new int[s.length];
        for(int i = 0; i < N; i++)  
        {    arr[i] = Integer.parseInt(new String(s.charAt(i)));
            //arr[i] = Integer.parseInt(s[i]);
        }
        calc(arr, N, S);
    }
}

0 个答案:

没有答案