String.length怎么用?

 我来答
妖感肉灵10
2022-12-15 · TA获得超过6.3万个赞
知道顶级答主
回答量:101万
采纳率:99%
帮助的人:2.3亿
展开全部

ength是属性 数组.length 指数组的长度


length()是方法 s.length()是指调用String类的方法输出字符串的长度

String str="abc";int len=str.length();这个是String的方法



int[] a=new int[10];int len=a.length;这个是数组的属性

扩展资料

下面的例子显示使用的java.lang.String.length()方法

package com.yiibai;

import java.lang.*;

public class StringDemo {

public static void main(String[] args) {

String str = "tutorials point";

// prints length of string

System.out.println("length of string = " + str.length());


// checks if the string is empty or not


System.out.println("is this string empty? = " + str.isEmpty());

// empty string
str = "";
// prints length of string


System.out.println("length of string = " + str.length());


// checks if the string is empty or not


System.out.println("is this string empty? = " + str.isEmpty());

让我们来编译和运行上面的程序,这将产生以下结果:


length of string = 15


is this string empty? = false


length of string = 0


is this string empty? = true

参考资料

Java  百度百科

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式