Chars是基本char类型的实用工具类。
类声明
以下是com.google.common.primitives.Chars类的声明:
@GwtCompatible(emulated=true) public final class Chars extends Object
字段
S.N. | 字段及说明 |
---|---|
1 |
static int BYTES 所需要的字节数来表示一个原始char值。 |
方法
S.N. | 方法及说明 |
---|---|
1 |
static List<Character> asList(char... backingArray) 返回由指定数组支持的固定大小的列表,类似 Arrays.asList(Object[]). |
2 |
static char checkedCast(long value) 返回char值等于value值,如果可能的话。 |
3 |
static int compare(char a, char b) 比较两个指定的char值。 |
4 |
static char[] concat(char[]... arrays) 每个数组提供组合成一个单一的数组,则返回值。 |
5 |
static boolean contains(char[] array, char target) 返回true,如果target是否存在在任何地方数组元素。 |
6 |
static char[] ensureCapacity(char[] array, int minLength, int padding) 返回一个包含相同的值数组的数组,但保证是一个规定的最小长度。 |
7 |
static char fromByteArray(byte[] bytes) 返回char值,其大端表示被存储在第一个2字节的字节;相当于 ByteBuffer.wrap(bytes).getChar(). |
8 |
static char fromBytes(byte b1, byte b2) 返回char值的字节表示是给定2个字节,在big-endian的顺序;相当于 Chars.fromByteArray(new byte[] {b1, b2}). |
9 |
static int hashCode(char value) 返回哈希码的值;等于调用的结果 ((Character) value).hashCode(). |
10 |
static int indexOf(char[] array, char target) 返回目标数组的首次出现的索引值。 |
11 |
static int indexOf(char[] array, char[] target) 返回指定目标的第一个匹配的起始位置数组内,或-1,如果不存在。 |
12 |
static String join(String separator, char... array) 返回包含由分离器分离所提供的char值字符串。 |
13 |
static int lastIndexOf(char[] array, char target) 返回target 在数组中最后一个出现的索引值。 |
14 |
static Comparator<char[]> lexicographicalComparator() 返回一个比较器,它比较两个字符数组字典顺序。 |
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) 复制字符实例的集合到原始char值的新数组。 |
19 |
static byte[] toByteArray(char value) 返回在2元素的字节数组值大端表示;相当于 ByteBuffer.allocate(2).putChar(value).array(). |
方法继承
这个类从以下类继承的方法:
-
java.lang.Object
Chars 例子
选择使用任何编辑器创建以下java程序在 C:/> Guava
GuavaTester.javaimport 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