请阅读下面的程序代码Class Person{void say(){System.out.println("hello");}}class Example{public static void main(String[] args){Person p2 = new Person();Person p1 = new Person(); p2.say();p1.say();p2=null;p2.say();}}下列关于程序运行结果的描述中,正确的是()
答:输出2个hello后会抛出异常
继续答题:下一题
更多JAVA程序设计试题
- 1数据库的删除语句是?
- 2在下面哪种情况下,可以使用方法重写?
- 3在try{}catch(______e){}横线处需要填写的是()
- 4编译运行下面的程序,结果是什么?public class A {public static void main(String[] args) {B b = new B();b.test();}void test() {System.out.print("A");}}class B extends A {void test() {super.test();System.out.print("B"); }}
- 5下列选项中,不属于比较运算符的是
- 6下列关于继承的描述中,错误的是