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


Java Guava Lists.reverse()用法及代碼示例


Guava 的Lists.reverse()方法接受列表作為參數,並返回作為參數傳遞的列表的反向視圖。如果指定的列表是隨機訪問,則返回的列表也是random-access。

例如:Lists.reverse(Arrays.asList(1、2、3))返回包含3、2、1的列表。

用法:


public static <T> List<T> reverse(List<T> list)

參數:該方法接受list作為參數,並返回由該列表支持的列表。這意味著在返回的列表中所做的更改會反映在作為參數傳遞給方法的列表中,反之亦然。

返回值:方法Lists.reverse()返回作為參數傳遞的列表的反向視圖。返回的列表支持作為參數傳遞的列表所支持的所有可選列表操作。

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

範例1:

// Java code to show implementation of 
// Guava's Lists.reverse() method 
  
import com.google.common.collect.Lists; 
import java.util.Arrays; 
import java.util.List; 
  
class GFG { 
  
    // Driver's code 
    public static void main(String[] args) 
    { 
        // Creating a List of Integers 
        List<Integer> myList 
            = Arrays.asList(1, 2, 3, 4, 5); 
  
        // Using Lists.reverse() method to get a 
        // reversed view of the specified list. Any 
        // changes in the returned list are reflected 
        // in the original list and vice-versa 
        List<Integer> reverse = Lists.reverse(myList); 
  
        // Displaying the reversed view of specified List 
        System.out.println(reverse); 
    } 
}
輸出:
[5, 4, 3, 2, 1]

範例2:

// Java code to show implementation of 
// Guava's Lists.reverse() method 
  
import com.google.common.collect.Lists; 
import java.util.Arrays; 
import java.util.List; 
  
class GFG { 
  
    // Driver's code 
    public static void main(String[] args) 
    { 
        // Creating a List of Characters 
        List<Character> myList 
            = Arrays.asList('H', 'E', 'L', 'L', 'O'); 
  
        // Using Lists.reverse() method to get a 
        // reversed view of the specified list. Any 
        // changes in the returned list are reflected 
        // in the original list and vice-versa 
        List<Character> reverse = Lists.reverse(myList); 
  
        // Displaying the reversed view of specified List 
        System.out.println(reverse); 
    } 
}
輸出:
[O, L, L, E, H]

參考:https://google.github.io/guava/releases/23.0/api/docs/com/google/common/collect/Lists.html#reverse-java.util.List-



相關用法


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