1. 程式人生 > >關於字串中length與length()的區別

關於字串中length與length()的區別

public class TS{
    public static String arr[] = {"s","a","s",};
    public static String str = "sas";
    public static void main(String [] args){
        System.out.println(arr.length);
        System.out.println(str.length());
    }
}

注意字串陣列是length,而字串是length()。

因為length是陣列的一個屬性,而length()則是