當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Guava Bytes.asList()用法及代碼示例


Guava字節類的Bytes.asList()方法接受字節數組作為參數,並返回具有固定大小的列表。返回的列表由作為參數傳遞的字節數組支持。這意味著在數組中作為參數傳遞的更改將反映在方法返回的列表中,反之亦然。

用法:

public static List<Byte> asList(byte… backingArray)



參數:該方法接受強製性參數backingArray,該參數是用於備份列表的字節數組。

返回值:方法Bytes.asList()返回固定大小的列表,該列表由作為該方法的參數傳遞的數組支持。換句話說,該方法返回數組的列表視圖。

以下示例說明了上述方法的實現:

範例1:

// Java code to show implementation of 
// Guava's Bytes.asList() method 
  
import com.google.common.primitives.Bytes; 
import java.util.List; 
  
class GFG { 
  
    // Driver's code 
    public static void main(String[] args) 
    { 
  
        // Creating a Byte array 
        byte arr[] = { 1, 2, 3, 4, 5 }; 
  
        // Using Bytes.asList() method to wrap 
        // the specified primitive Byte array 
        // as a List of the Byte type 
        List<Byte> myList = Bytes.asList(arr); 
  
        // Displaying the elements in List 
        System.out.println(myList); 
    } 
}
輸出:
[1, 2, 3, 4, 5]

範例2:

// Java code to show implementation of 
// Guava's Bytes.asList() method 
  
import com.google.common.primitives.Bytes; 
import java.util.List; 
  
class GFG { 
  
    // Driver's code 
    public static void main(String[] args) 
    { 
  
        // Creating a Byte array 
        byte arr[] = { 3, 5, 7 }; 
  
        // Using Bytes.asList() method to wrap 
        // the specified primitive Byte array 
        // as a List of the Byte type 
        List<Byte> myList = Bytes.asList(arr); 
  
        // Displaying the elements in List 
        System.out.println(myList); 
    } 
}
輸出:
[3, 5, 7]

參考: https://google.github.io/guava/releases/19.0/api/docs/com/google/common/primitives/Bytes.html#asList(byte…)



相關用法


注:本文由純淨天空篩選整理自Sahil_Bansall大神的英文原創作品 Java Guava | Bytes.asList() method with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。