回到首页
个人中心
反馈问题
注册登录
下载APP
代码
提交代码
public class StringMethod1 { public static void main(String[] args) { // 创建String对象str String str = "hello world!"; // 调用对象下length()方法,并使用int类型变量接收返回结果 int length = str.length(); System.out.println("str的长度为:" + length); } }
运行结果