当我尝试将 charAt 相乘时,我收到了“大”数字:
String s = "25999993654";
System.out.println(s.charAt(0)+s.charAt(1));
结果:103
但是当我只想收到一个号码时,没关系。
在 JAVA 文档上:
the character at the specified index of this string. The first character is at index 0.
所以我需要解释或解决方案(我认为我应该将 string 转换为 int ,但在我看来这是不必要的工作)