String.length怎么用?
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
参考资料