Java Short valueOf()方法

java.lang.Short.valueOf(short s) 方法返回一个表示指定short值的Short 实例。

1 语法

public static Short valueOf(short s)

2 参数

s :这是short的值。

3 返回值

这个方法返回一个代表Short的实例。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Short valueOf()方法
 */
import java.lang.*;

public class ShortDemo {

   public static void main(String[] args) {

     short shortNum = 100;
    
     // returns Short instance representing given short value
     Short ShortValue = Short.valueOf(shortNum);
    
     // displays the short object value
     System.out.println("Short object representing the specified short
     value = " + ShortValue);
  }
}

输出结果为:

Short object representing the specified short value = 100

 

热门文章

优秀文章