当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。