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成神之路

版权声明:
作者:Zad
链接:https://www.techfm.club/p/28520.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>