摘要: 类型转换 public static void main(String[] args) { int i =128; byte b = (byte)i; System.out.println(i); System.out.println(b);//内存溢出 //强制转换 (类型)变量名 double 阅读全文
posted @ 2022-07-30 21:08 干饭人减肥魂 阅读(54) 评论(0) 推荐(0)