可能重复:
我可以在 Java 中乘以 charAt 吗?
当我编译这个:
String s = "25999993654";
System.out.println(s.charAt(0)+s.charAt(1));
我收到了 100
JAVA文档:
the character at the specified index of this string. The first character is at index 0.
我认为我必须将 string 编译为 int ,但我认为这是不必要的工作。任何解决方案或想法?