多头类 |番石榴 |Java
Longs是用于基本类型 long 的实用程序类。它提供了与 long 原语有关的静态实用程序方法,这些方法在 Long 或 Arrays 中都没有。
宣言 :
@GwtCompatible(emulated=true)
public final class Longs
extends Object
下表显示了 Guava Longs Class 的字段摘要:
Guava Longs Class 提供的一些方法是:
例外:
- min : IllegalArgumentException如果数组为空。
- max : IllegalArgumentException如果数组为空。
- fromByteArray : IllegalArgumentException如果 bytes 的元素少于 8 个。
- ensureCapacity : IllegalArgumentException如果 minLength 或 padding 为负数。
- toArray : NullPointerException如果集合或其任何元素为空。
下表显示了 Guava Longs Class 提供的一些其他方法:
下面给出了一些示例,显示了 Guava Longs 类的方法的实现:
示例 1:
// Java code to show implementation
// of Guava Longs.asList() method
import com.google.common.primitives.Longs;
import java.util.*;
class GFG {
// Driver method
public static void main(String[] args)
{
long arr[] = { 3L, 4L, 5L, 6L, 7L };
// Using Longs.asList() method which wraps
// the primitive long array as List of
// long Type
List myList = Longs.asList(arr);
// Displaying the elements
System.out.println(myList);
}
}
输出 :
[3, 4, 5, 6, 7]
示例 2:
// Java code to show implementation
// of Guava Longs.toArray() method
import com.google.common.primitives.Longs;
import java.util.*;
class GFG {
// Driver method
public static void main(String[] args)
{
List myList = Arrays.asList(3L, 4L, 5L, 6L, 7L);
// Using Longs.toArray() method which
// converts a List of Longs to an
// array of long
long[] arr = Longs.toArray(myList);
// Displaying the elements
System.out.println(Arrays.toString(arr));
}
}
输出 :
[3, 4, 5, 6, 7]
示例 3:
// Java code to show implementation
// of Guava Longs.concat() method
import com.google.common.primitives.Longs;
import java.util.*;
class GFG {
// Driver method
public static void main(String[] args)
{
long[] arr1 = { 3L, 4L, 5L };
long[] arr2 = { 6L, 7L };
// Using Longs.concat() method which
// combines arrays from specified
// arrays into a single array
long[] arr = Longs.concat(arr1, arr2);
// Displaying the elements
System.out.println(Arrays.toString(arr));
}
}
输出 :
[3, 4, 5, 6, 7]
示例 4:
// Java code to show implementation
// of Guava Longs.contains() method
import com.google.common.primitives.Longs;
class GFG {
// Driver method
public static void main(String[] args)
{
long[] arr = { 3L, 4L, 5L, 6L };
// Using Longs.contains() method which
// checks if element is present in array
// or not
System.out.println(Longs.contains(arr, 4L));
System.out.println(Longs.contains(arr, 7L));
}
}
输出 :
true
false
示例 5:
// Java code to show implementation
// of Guava Longs.min() method
import com.google.common.primitives.Longs;
class GFG {
// Driver method
public static void main(String[] args)
{
long[] arr = { 3L, 4L, 5L, 6L };
// Using Longs.min() method
System.out.println(Longs.min(arr));
}
}
输出 :
3
示例 6:
// Java code to show implementation
// of Guava Longs.max() method
import com.google.common.primitives.Longs;
class GFG {
// Driver method
public static void main(String[] args)
{
long[] arr = { 3L, 4L, 5L, 6L };
// Using Longs.max() method
System.out.println(Longs.max(arr));
}
}
输出 :
6