Java 简明教程
Java - Short class with Examples
Class Declaration
以下是 java.lang.Short 类声明 −
public final class Short
extends Number
implements Comparable<Short>
Field
以下是 java.lang.Short 类字段 −
-
static short MAX_VALUE − 这是保存短整数可能的最大值 215-1 的常量。
-
static short MIN_VALUE − 这是保存短整数的可能最小值 -215 的常量。
-
static int SIZE − 这是用于以二的补码二进制形式表示短整数值的位数。
-
static Class<Short> TYPE − 这是表示原语类型短整形的类实例。
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