标签:ble sys static 自动 oat code 强制类型转换 void 1.2
/** * 自动类型转换和强制类型转换 * */ public class Demo1 { public static void main(String[] args) { //自动类型转换 short s =1; int i; i=s; System.out.println("i="+i); //强制类型转换 double a=1.22233; float b; b= (float)a; System.out.println("b="+b); } }
标签:ble sys static 自动 oat code 强制类型转换 void 1.2
原文地址:https://www.cnblogs.com/xyg-zyx/p/9771833.html