变量size输出

小作业如下,写起来稍微顺手一些了呢。
public class Text { // 创建类
public static void main(String args[]) { // 主方法
String str = "We are students"; // 定义字符串str
// 将空字符串在str中的索引位置赋值给变量size
int size = str.lastIndexOf("");
// 将变量size输出
System.out.println("空字符在字符串str中的索引位置是:" + size);
// 将字符串str的长度输出
System.out.println("字符串str的长度是:" + str.length());
}
}

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

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