Guava Chars類


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.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