gpt4 book ai didi

java charAt() 方法和代理

转载 作者:行者123 更新时间:2023-12-01 18:35:45 25 4
gpt4 key购买 nike

我正在编写java代码,想知道为什么这段代码的输出是x。我本来期待 t,因为它是第 5 个字母。

public class StringBufferDemo{
public static void main(String args[]){
StringBuffer sb = new StringBuffer("ttsttxctlltnt");
System.out.println(sb.charAt(5));
}
}

最佳答案

这是因为在 java 中,StringBuffer 对象的索引从 0 开始。第 1st 字符位于位置 0,第 2nd 字符位于位置 1等等...

String ------ "t t s t t x c t l l"
ArrayIndex -- 0 1 2 3 4 5 6 7 8 9

关于java charAt() 方法和代理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22110500/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com