提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
将Short转换为数字原始数据类型示例
public class Main { /* 时 代 J a v a 公 众 号 - nowjava.com 提 供 */ public static void main(String[] args) { Short sObj = new Short("10"); byte b = sObj.byteValue(); System.out.println(b); short s = sObj.shortValue(); System.out.println(s); int i = sObj.intValue(); System.out.println(i); float f = sObj.floatValue(); System.out.println(f); double d = sObj.doubleValue(); System.out.print