java中string类的charAt函数效率是?如题,求解。。[解决办法]
public char charAt(int index) { if ((index < 0) || (index >= count)) { throw new StringIndexOutOfBoundsException(index); } return value[index + offset]; }