java的charAt()方法substring() 方法Stack 的使用toCharArray() 方法
charAt() 方法用于返回指定索引处的字符。索引范围为从 0 到 length() - 1。
语法
public char charAt(int index);
public class Test {
public static void main(String args[]) {
String s = "www.runoob.com";
char result = s.charAt(6);
System.out.println(result);
}
}
输出:n
substring() 方法返回字符串的子字符串。
public String substring(int beginIndex)
或
public String substring(int beginIndex, int endIndex)
public class RunoobTest {
public static void main(String args[]) {
java的charAt()方法substring() 方法Stack 的使用toCharArray() 方法最先出现在Python成神之路。
共有 0 条评论