① java中數組有沒有length()方法string沒有lenght()方法
java中數組是沒有length()方法的,只有length屬性,數組array.length返回的是該數組的長度。
字元串String是有length()方法的,str.length()返回的是該字元串的長度。
(1)java數組擴展擴展閱讀
java數組常用方法:
1、聲明一個數組
String[] aArray = new String[5];
String[] bArray = {"a","b","c", "d", "e"};
String[] cArray = new String[]{"a","b","c","d","e"};
2、列印一個數組
String[] aArray = new String[5];
String[] bArray = {"a","b","c", "d", "e"};
String[] cArray = new String[]{"a","b","c","d","e"};
3、根據數組創建ArrayList
String[] stringArray = { "a", "b", "c", "d", "e" };
ArrayList<String> arrayList = new ArrayList<String>(Arrays.asList(stringArray));
System.out.println(arrayList);
4、判斷數組內部是否包含某個值
String[] stringArray = { "a", "b", "c", "d", "e" };
boolean b = Arrays.asList(stringArray).contains("a");
System.out.println(b);
5、連接兩個數組
int[] intArray = { 1, 2, 3, 4, 5 };
int[] intArray2 = { 6, 7, 8, 9, 10 };
int[] combinedIntArray = ArrayUtils.addAll(intArray, intArray2);
6、聲明一個內聯數組
method(new String[]{"a", "b", "c", "d", "e"})
String常用方法:
1、求字元串某一位置字元
charAt(int index)返回字元串中指定位置的字元;注意字元串中第一個字元索引是0,最後一個是
length()-1。
例如:
String str = new String("asdfzxc");
char ch = str.charAt(4);//ch = z
2、提取子串
用String類的substring方法可以提取字元串中的子串,該方法有兩種常用參數:
1)substring(int beginIndex)該方法從beginIndex位置起,從當前字元串中取出剩餘的字元作為一
個新的字元串返回。
2)substring(int beginIndex, int endIndex)該方法從beginIndex位置起,從當前字元串中取出到
endIndex-1位置的字元作為一個新的字元串返回。
例如:
String str1 = new String("asdfzxc");
String str2 = str1.substring(2);//str2 = "dfzxc"
String str3 = str1.substring(2,5);//str3 = "dfz"
3、字元串比較
1)compareTo(String anotherString)該方法是對字元串內容按字典順序進行大小比較,通過返回的
整數值指明當前字元串與參數字元串的大小關系。若當前對象比參數大則返回正整數,反之返回負
整數,相等返回0。
2)compareToIgnore(String anotherString)與compareTo方法相似,但忽略大小寫。
3)equals(Object anotherObject)//比較當前字元串和參數字元串,在兩個字元串相等的時候返回
true,否則返回false。
4)equalsIgnoreCase(String anotherString)//與equals方法相似,但忽略大小寫。
例如:
String str1 = new String("abc");
String str2 = new String("ABC");
int a = str1.compareTo(str2);//a>0
int b = str1.compareToIgnoreCase(str2);//b=0
boolean c = str1.equals(str2);//c=false
boolean d = str1.equalsIgnoreCase(str2);//d=true
4、字元串連接
concat(String str)將參數中的字元串str連接到當前字元串的後面,效果等價於"+"。
例如:
String str = "aa".concat("bb").concat("cc");
相當於String str = "aa"+"bb"+"cc";
② java中數組最多可以放置多少個元素
java數組用int做引索,最大容量2G=2 147 483 639個元素空間。
同時受「可用內存空間」的大小限制。
java每個對象元素實際佔用內存都大於12位元組,即使你有16GB內存,也不夠2G個對象。