if( (s.charAt(n)=='(' && s.chartAt(n+1)==')') || (s.charAt(n)=='{' && s.chartAt(n+1)=='}') || (s.charAt(n)=='[' && s.chartAt(n+1)==']')){ }
报错 错误内容如下:
Line 8: error: cannot find symbol
symbol: method chartAt(int)
location: variable s of type String
if(s.charAt(n)=='('){
n++;
}这样是可以的,为什么上面的不行