题目内容

Java 提供了 4 种访问权限来实现封装机制,按访问权限从低到高排列为 ______、友好的、_______、_______。(用英文关键字回答)

查看答案
更多问题

如果子类和父类不在同一个包中,子类是否继承父类的友好成员?回答是或否______。

请写出E类中【代码1】~【代码4】的输出结果。class A {double f(double x,double y) {return x+y;}static int g(int n) {return n*n;}}class B extends A {double f(double x,double y) {double m = super.f(x,y);return m+x*y;}static int g(int n) {int m = A.g(n);return m+n;}}public class E {public static void main(String args[]) {B b = new B();System.out.println(b.f(10.0,8.0)); //【代码1】System.out.println(b.g(3)); //【代码2】A a = new B();System.out.println(a.f(10.0,8.0)); //【代码3】System.out.println(a.g(3)); //【代码4】}}

Java源文件是由若干个_____组成的。对于应用程序,必须有一个类含有public static void main(String args[])的方法,含有该方法的类称为应用程序的_______。一个源文件中必须要有public类吗?________(回答是或否)

写出下列B类中【代码1】,【代码2】的输出结果。class A {public int getNumber(int a) {return a+1;}}class B extends A {public int getNumber (int a) {return a+100;}public static void main (String args[]) {A a =new A();System.out.println(a.getNumber(10)); //【代码1】a = new B();System.out.println(a.getNumber(10)); //【代码2】}}

答案查题题库