Chars
Chars是原始类型char的实用程序类。
Class 声明 (Class Declaration)
以下是com.google.common.primitives.Chars类的声明 -
@GwtCompatible(emulated = true)
public final class Chars
extends Object
字段 (Fields)
Sr.No | 领域和描述 |
---|---|
1 | static int BYTES 表示原始char值所需的字节数。 |
方法 (Methods)
Sr.No | 方法和描述 |
---|---|
1 | static List《Character》 asList(char... backingArray) 返回由指定数组支持的固定大小列表,类似于Arrays.asList(Object [])。 |
2 | static char checkedCast(long value) 如果可能,返回等于value的char值。 |
3 | static int compare(char a, char b) 比较两个指定的char值。 |
4 | static char[] concat(char[]... arrays) 返回每个提供的数组组合成单个数组的值。 |
5 | static boolean contains(char[] array, char target) 如果target作为数组中的任何元素存在,则返回true。 |
6 | static char[] ensureCapacity(char[] array, int minLength, int padding) 返回一个包含与array相同值的数组,但保证指定的最小长度。 |
7 | static char fromByteArray(byte[] bytes) 返回其big-endian表示存储在前2个字节字节中的char值; 相当于ByteBuffer.wrap(bytes).getChar()。 |
8 | static char fromBytes(byte b1, byte b2) 以big-endian顺序返回其字节表示为给定2个字节的char值; 相当于Chars.fromByteArray(new byte [] {b1,b2})。 |
9 | static int hashCode(char value) 返回值的哈希码; 等于调用((字符)值).hashCode()的结果。 |
10 | static int indexOf(char[] array, char target) 返回数组中值target的第一次出现的索引。 |
11 | static int indexOf(char[] array, char[] target) 返回数组中指定目标第一次出现的起始位置,如果不存在,则返回-1。 |
12 | static String join(String separator, char... array) 返回一个字符串,其中包含由separator分隔的提供的char值。 |
13 | static int lastIndexOf(char[] array, char target) 返回数组中值target的最后一次出现的索引。 |
14 | static Comparator《char[]》 lexicographicalComparator() 返回一个比较器,按字典顺序比较两个char数组。 |
15 | static char max(char... array) 返回数组中存在的最大值。 |
16 | static char min(char... array) 返回数组中存在的最小值。 |
17 | static char saturatedCast(long value) 返回值最接近的char。 |
18 | static char[] toArray(Collection《Character》 collection) 将一组Character实例复制到一个新的原始char值数组中。 |
19 | static byte[] toByteArray(char value) 返回2元素字节数组中的big-endian值表示形式; 相当于ByteBuffer.allocate(2).putChar(value).array()。 |
方法继承 (Methods Inherited)
该类继承以下类中的方法 -
- java.lang.Object
Chars类的示例
使用您选择的任何编辑器在C:/》 Guava.创建以下java程序C:/》 Guava.
GuavaTester.java
import java.util.List;
import com.google.common.primitives.Chars;
public class GuavaTester {
public static void main(String args[]) {
GuavaTester tester = new GuavaTester();
tester.testChars();
}
private void testChars() {
char[] charArray = {'a','b','c','d','e','f','g','h'};
//convert array of primitives to array of objects
List<Character> objectArray = Chars.asList(charArray);
System.out.println(objectArray.toString());
//convert array of objects to array of primitives
charArray = Chars.toArray(objectArray);
System.out.print("[ ");
for(int i = 0; i< charArray.length ; i++) {
System.out.print(charArray[i] + " ");
}
System.out.println("]");
//check if element is present in the list of primitives or not
System.out.println("c is in list? " + Chars.contains(charArray, 'c'));
//return the index of element
System.out.println("c position in list " + Chars.indexOf(charArray, 'c'));
//Returns the minimum
System.out.println("Min: " + Chars.min(charArray));
//Returns the maximum
System.out.println("Max: " + Chars.max(charArray));
}
}
验证结果
使用javac编译器编译类如下 -
C:\Guava>javac GuavaTester.java
现在运行GuavaTester来查看结果。
C:\Guava>java GuavaTester
看到结果。
[a, b, c, d, e, f, g, h]
[ a b c d e f g h ]
c is in list? true
c position in list 2
Min: a
Max: h