2021年2月24日
摘要: public class Demo04 { public static void main(String[] args) { int i = 128; byte b = (byte)i; //强制转换 (类型)变量名 高--低 //自动转换 低--高 System.out.println(i); S 阅读全文
posted @ 2021-02-24 22:05 na2co3- 阅读(47) 评论(0) 推荐(0)
摘要: import com.sun.scenario.effect.impl.sw.sse.SSEBlend_SRC_OUTPeer;public class Demo03 { public static void main(String[] args) { //整数拓展:进制 二进制 八进制 十进制 十 阅读全文
posted @ 2021-02-24 17:03 na2co3- 阅读(79) 评论(0) 推荐(0)