- Guava 教程
- Guava - 首页
- Guava - 概述
- Guava - 环境设置
- Guava - Optional 类
- Guava - Preconditions 类
- Guava - Ordering 类
- Guava - Objects 类
- Guava - Range 类
- Guava - Throwables 类
- Guava - 集合工具类
- Guava - 缓存工具类
- Guava - 字符串工具类
- Guava - 原生类型工具类
- Guava - 数学工具类
- Guava 有用资源
- Guava - 快速指南
- Guava - 有用资源
- Guava - 讨论
Guava - 字节类
Bytes 是一个用于基本类型 byte 的工具类。
类声明
以下是 com.google.common.primitives.Bytes 类的声明:
@GwtCompatible public final class Bytes extends Object
方法
序号 | 方法及描述 |
---|---|
1 |
static List<Byte> asList(byte... backingArray) 返回一个由指定数组支持的固定大小列表,类似于 Arrays.asList(Object[])。 |
2 |
static byte[] concat(byte[]... arrays) 返回来自每个提供的数组组合成一个单个数组的值。 |
3 |
static boolean contains(byte[] array, byte target) 如果目标作为数组中任何位置的元素存在,则返回 true。 |
4 |
static byte[] ensureCapacity(byte[] array, int minLength, int padding) 返回一个包含与数组相同值的数组,但保证具有指定的最小长度。 |
5 |
static int hashCode(byte value) 返回 value 的哈希码;等于调用 ((Byte) value).hashCode() 的结果。 |
6 |
static int indexOf(byte[] array, byte target) 返回 target 在数组中第一次出现时的索引。 |
7 |
static int indexOf(byte[] array, byte[] target) 返回数组中指定目标第一次出现的起始位置,如果不存在则返回 -1。 |
8 |
static int lastIndexOf(byte[] array, byte target) 返回 target 在数组中最后一次出现时的索引。 |
9 |
static byte[] toArray(Collection<? extends Number> collection) 返回一个包含集合中每个值的数组,以 Number.byteValue() 的方式转换为 byte 值。 |
继承的方法
此类继承自以下类:
- java.lang.Object
Bytes 类的示例
使用您选择的任何编辑器创建以下 Java 程序,例如在 C:/> Guava. 中。
GuavaTester.java
import java.util.List; import com.google.common.primitives.Bytes; public class GuavaTester { public static void main(String args[]) { GuavaTester tester = new GuavaTester(); tester.testBytes(); } private void testBytes() { byte[] byteArray = {1,2,3,4,5,5,7,9,9}; //convert array of primitives to array of objects List<Byte> objectArray = Bytes.asList(byteArray); System.out.println(objectArray.toString()); //convert array of objects to array of primitives byteArray = Bytes.toArray(objectArray); System.out.print("[ "); for(int i = 0; i< byteArray.length ; i++) { System.out.print(byteArray[i] + " "); } System.out.println("]"); byte data = 5; //check if element is present in the list of primitives or not System.out.println("5 is in list? " + Bytes.contains(byteArray, data)); //Returns the index System.out.println("Index of 5: " + Bytes.indexOf(byteArray,data)); //Returns the last index maximum System.out.println("Last index of 5: " + Bytes.lastIndexOf(byteArray,data)); } }
验证结果
使用 javac 编译器编译类,如下所示:
C:\Guava>javac GuavaTester.java
现在运行 GuavaTester 以查看结果。
C:\Guava>java GuavaTester
查看结果。
[1, 2, 3, 4, 5, 5, 7, 9, 9] [ 1 2 3 4 5 5 7 9 9 ] 5 is in list? true Index of 5: 4 Last index of 5: 5