關於 Java 數組的 12 個最佳方法

1,聲明數組

  1. String[] aArray = new String[5];  

  2. String[] bArray = {"a","b","c""d""e"};  

  3. String[] cArray = new String[]{"a","b","c","d","e"};

2,輸出數組

  1. int[] intArray = { 12345 };  

  2. String intArrayString = Arrays.toString(intArray);  

  3.    

  4. // print directly will print reference value  

  5. System.out.println(intArray);  

  6. // [I@7150bd4d  

  7.    

  8. System.out.println(intArrayString);  

  9. // [1, 2, 3, 4, 5]  

此方法需要import java.util.Arrays;

3,從一個數組創建數組列表

  1. String[] stringArray = { "a""b""c""d""e" };  

  2. ArrayList<String> arrayList = new ArrayList<String>(Arrays.asList(stringArray));  

  3. System.out.println(arrayList);  

  4. // [a, b, c, d, e]  

4,檢查一個數組是否包含某個值

  1. String[] stringArray = { "a""b""c""d""e" };  

  2. boolean b = Arrays.asList(stringArray).contains("a");  

  3. System.out.println(b);  

  4. // true  

5,連接兩個數組

  1. int[] intArray = { 12345 };  

  2. int[] intArray2 = { 678910 };  

  3. // Apache Commons Lang library  

  4. int[] combinedIntArray = ArrayUtils.addAll(intArray, intArray2);  

6,聲明一個內聯數組

  1. method(new String[]{"a", "b", "c", "d", "e"});  

7,把提供的數組元素放入一個字符串

  1. // containing the provided list of elements  

  2. // Apache common lang  

  3. String j = StringUtils.join(new String[] { "a", "b", "c" }, ", ");  

  4. System.out.println(j);  

  5. // a, b, c  

8,將一個數組列表轉換爲數組

  1. String[] stringArray = { "a""b""c""d""e" };  

  2. ArrayList<String> arrayList = new ArrayList<String>(Arrays.asList(stringArray));  

  3. String[] stringArr = new String[arrayList.size()];  

  4. arrayList.toArray(stringArr);  

  5. for (String s : stringArr)  

  6.     System.out.println(s);  

9,將一個數組轉換爲集(set)

  1. Set<String> set = new HashSet<String>(Arrays.asList(stringArray));  

  2. System.out.println(set);  

  3. //[d, e, b, c, a]  

10,逆向一個數組

  1. int[] intArray = { 12345 };  

  2. ArrayUtils.reverse(intArray);  

  3. System.out.println(Arrays.toString(intArray));  

  4. //[5, 4, 3, 2, 1]  

11,移除數組中的元素

  1. int[] intArray = { 12345 };  

  2. int[] removed = ArrayUtils.removeElement(intArray, 3);//create a new array  

  3. System.out.println(Arrays.toString(removed));  

12,將整數轉換爲字節數組

  1. byte[] bytes = ByteBuffer.allocate(4).putInt(8).array();  

  2.    

  3. for (byte t : bytes) {  

  4.    System.out.format("0x%x ", t);  

  5. }  


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章