/** * 自动类型转换和强制类型转换 * */ 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); } }
原文地址:https://www.cnblogs.com/xyg-zyx/p/9771833.html
时间: 2024-10-28 21:50:41