位置:首页 » 文章/教程分享 » Guava Shorts类

Shorts是基本类型short的实用工具类。

类声明

以下是com.google.common.primitives.Shorts类的声明:

@GwtCompatible
public final class Shorts
   extends Object


字段

S.N. 字段及说明
1 static int BYTES
所需要的字节数来表示一个原始short的值。
2 static short MAX_POWER_OF_TWO
两个最大的幂可以被表示为short。

方法

S.N. 方法及说明
1 static List<Short> asList(short... backingArray)
返回由指定数组支持的固定大小的列表,类似 Arrays.asList(Object[]).
2 static short checkedCast(long value)
返回 short 值,该值等于value,如果可能的话。
3 static int compare(short a, short b)
比较两个指定的short值。
4 static short[] concat(short[]... arrays)
每个阵列提供组合成一个单一的阵列,则返回其值。
5 static boolean contains(short[] array, short target)
返回true,如果目标是否存在在任何地方数组元素。
6 static short[] ensureCapacity(short[] array, int minLength, int padding)
返回一个包含相同的值数组的数组,但保证是一个规定的最小长度。
7 static short fromByteArray(byte[] bytes)
返回短值,其大端表示被存储在最前2字节的字节;相当于 ByteBuffer.wrap(bytes).getShort().
8 static short fromBytes(byte b1, byte b2)
返回short值的字节表示的是给定2个字节,以 big-endian 顺序; 相当于 Shorts.fromByteArray(new byte[] {b1, b2}).
9 static int hashCode(short value)
返回值的哈希码;等于调用的结果 ((Short) value).hashCode().
10 static int indexOf(short[] array, short target)
返回值目标数组的首次出现的索引。
11 static int indexOf(short[] array, short[] target)
返回指定目标的第一个匹配的起始位置数组或-1,如果不存在这样的发生。
12 static String join(String separator, short... array)
返回包含由分离器分离所提供的短值的字符串。
13 static int lastIndexOf(short[] array, short target)
返回目标在数组中最后一个出现的索引的值。
14 static Comparator<short[]> lexicographicalComparator()
返回一个比较,比较两个 short 阵列字典顺序。
15 static short max(short... array)
返回出现在数组中的最大值。
16 static short min(short... array)
返回出现在数组的最小值。
17 static short saturatedCast(long value)
返回short最接近int的值。
18 static Converter<String,Short> stringConverter()
返回使用字符串和shorts之间的一个转换器序列化对象 Short.decode(java.lang.String) and Short.toString().
19 static short[] toArray(Collection<? extends Number> collection)
返回包含集合的每个值的数组,转换为 short 值的方式Number.shortValue().
20 static byte[] toByteArray(short value)
返回在2元素的字节数组值大尾数法表示;相当于 ByteBuffer.allocate(2).putShort(value).array().

继承的方法

这个类继承了以下类方法:

  • java.lang.Object

Shorts 示例

使用所选择的编辑器创建下面的java程序 C:/> Guava

GuavaTester.java
import java.util.List;

import com.google.common.primitives.Shorts;

public class GuavaTester {

   public static void main(String args[]){
      GuavaTester tester = new GuavaTester();
      tester.testShorts();
   }

   private void testShorts(){
      short[] shortArray = {1,2,3,4,5,6,7,8,9};

      //convert array of primitives to array of objects
      List<Short> objectArray = Shorts.asList(shortArray);
      System.out.println(objectArray.toString());

      //convert array of objects to array of primitives
      shortArray = Shorts.toArray(objectArray);
      System.out.print("[ ");
      for(int i = 0; i< shortArray.length ; i++){
         System.out.print(shortArray[i] + " ");
      }
      System.out.println("]");
      short data = 5;
      //check if element is present in the list of primitives or not
      System.out.println("5 is in list? "+ Shorts.contains(shortArray, data));

      //Returns the minimum		
      System.out.println("Min: " + Shorts.min(shortArray));

      //Returns the maximum		
      System.out.println("Max: " + Shorts.max(shortArray));
      data = 2400;
      //get the byte array from an integer
      byte[] byteArray = Shorts.toByteArray(data);
      for(int i = 0; i< byteArray.length ; i++){
         System.out.print(byteArray[i] + " ");
      }
   }
}

验证结果

使用javac编译器编译如下类

C:\Guava>javac GuavaTester.java

现在运行GuavaTester看到的结果

C:\Guava>java GuavaTester

看到结果。

[1, 2, 3, 4, 5, 6, 7, 8, 9]
[ 1 2 3 4 5 6 7 8 9 ]
5 is in list? true
Min: 1
Max: 9
9 96