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


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


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

用法:

public static List<Short> asList(short… backingArray)



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

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

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

範例1:

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

參考: https://google.github.io/guava/releases/23.0/api/docs/com/google/common/primitives/Shorts.html#asList-short…-



相關用法


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