Java 简明教程

Java - Short class with Examples

Introduction

Java Short 类将一个短整形的原语类型值包装进一个对象中。Short 类型的对象包含一个类型为短整形的字段。

Class Declaration

以下是 java.lang.Short 类声明 −

public final class Short
   extends Number
      implements Comparable<Short>

Field

以下是 java.lang.Short 类字段 −

  1. static short MAX_VALUE − 这是保存短整数可能的最大值 215-1 的常量。

  2. static short MIN_VALUE − 这是保存短整数的可能最小值 -215 的常量。

  3. static int SIZE − 这是用于以二的补码二进制形式表示短整数值的位数。

  4. static Class&lt;Short&gt; TYPE − 这是表示原语类型短整形的类实例。

Class constructors

Class methods

Methods inherited

此类从以下类中继承方法:

  1. java.lang.Object

Example

以下示例演示如何使用 Short 类从字符串获取 short。

package com.tutorialspoint;

public class ShortDemo {

   public static void main(String[] args) {

      // create a String s and assign value to it
      String s = "+120";

      // create a Short object i
      Short i;

      // get the value of short from string
      i = Short.valueOf(s);

      // print the value
      System.out.println( "Short value of string " + s + " is " + i );
   }
}

让我们编译并运行上述程序,这将生成以下结果 −

Short value of string +120 is 120