类型转换:
1 public class Test { 2 public static void main(String[] args) { 3 char c1 = ‘\u534e‘; 4 //long l1 = 888888888888; 5 //float f1 = 12.3; 6 7 System.out.println(c1); 8 //System.out.println(l1); 过大的整数888888888888 9 //System.out.println(f1); 不兼容的类型:从都变了转换到float可能会有损失 10 } 11 }
时间: 2024-10-10 12:02:59