gpt4 book ai didi

java - java中的字符串长度

转载 作者:太空狗 更新时间:2023-10-29 15:56:51 25 4
gpt4 key购买 nike

String h;
h=(String) Tok.nextElement();
System.out.println("" + ++n +": "+h);
h.trim();
System.out.println("The length of h :"+n+h.length());
wordlist[now]=h;
System.out.println("Now length is"+wordlist[now].length());

这个“\u0B9A\u0BBF\u0BAF\u0BA9”就是分配给h的字符串,输出为

The length of h :128

Now length is 41

我完全糊涂了 :( 请帮忙。抱歉。pblm 不带运算符,但带长度,还要注意 h 的长度是 128 !! 实际长度是 28

最佳答案

wordlist[now++]=hh赋给wordlist[now]然后增加 now,之后 wordlist[now] 很可能not h(除非之前已经是)。

您可能想改用 wordlist[++now]=h。更好的是,完全避免在语句中使用增量器。

关于java - java中的字符串长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6099672/

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