Java Byte shortValue()方法
java.lang.Byte.shortValue() 返回此字节为一个short值。
1 语法
public short shortValue()
2 参数
无
3 返回值
此方法将返回该对象表示数值后转换为short型的值。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Byte shortValue()方法
*/
import java.lang.*;
public class ByteDemo {
public static void main(String[] args) {
// create 2 Byte objects b1, b2
Byte b1, b2;
// create 2 short primitives s1, s2
short s1, s2;
// assign values to b1, b2
b1 = new Byte("10");
b2 = new Byte("-10");
// assign short values of b1, b2 to s1, s2
s1 = b1.shortValue();
s2 = b2.shortValue();
String str1 = "short value of Byte " + b1 + " is " + s1;
String str2 = "short value of Byte " + b2 + " is " + s2;
// print s1, s2 values
System.out.println( str1 );
System.out.println( str2 );
}
}
输出结果为:
short value of Byte 10 is 10
short value of Byte -10 is -10
热门文章
优秀文章