判断题
抽象类不能实例化。
正确
判断题 String str; System.out.println(str.length()); 以上语句运行的结果是显示0 。
判断题 float x=26f; int y=26; int z=x/y; 以上语句能正常编译和运行。