021- Java语言基础-基本数据类型的一些问题和总结

我们输入以下代码: public class DataType07 { public static void main(String[]args){ byte b1 = 4; byte b2 = 5; byte b3 = b2 + b1; System.out.println(b3); } } 在命令行编译如下: 我们发现报错了,不兼
相关文章
相关标签/搜索