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]
相關用法
- Java Guava Doubles.min()用法及代碼示例
- Java Guava Doubles.contains()用法及代碼示例
- Java Guava Floats.contains()用法及代碼示例
- Java Guava Bytes.contains()用法及代碼示例
- Java Guava Longs.contains()用法及代碼示例
- Java Guava Shorts.min()用法及代碼示例
- Java Guava Longs.min()用法及代碼示例
- Java Guava Chars.min()用法及代碼示例
- Java Guava Floats.min()用法及代碼示例
- Java Guava Longs.max()用法及代碼示例
- Java Guava Doubles.max()用法及代碼示例
- Java Guava Chars.max()用法及代碼示例
- Java Guava Floats.max()用法及代碼示例
- Java Guava Booleans.contains()用法及代碼示例
- Java Guava Shorts.contains()用法及代碼示例
注:本文由純淨天空篩選整理自Sahil_Bansall大神的英文原創作品 Java Guava | Lists.reverse() method with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。