给定java代码如下所示,在A处新增下列( )方法,是对cal方法的重载 public class Test { public void cal(int x, int y, int z) { } //A }
A. public int cal(int x,int y,float z){return 0;}
B. public int cal(int x,int y,int z){return 0;}
C. public void cal2(int x, int y, int z){}
D. public viod cal(int z,int y,int x){}
查看答案
下面关于抽象类和抽象方法的说法中,错误的是
A. 抽象类可以包含非抽象方法
B. 抽象类可以定义对象
C. 抽象类可以包含抽象方法
D. 抽象类不可以被实例化
import java.io.*;class Person{public void print(){System.out.print("Person ");}public void printMyGender(String s){this.print();System.out.print(s+" ");}}class Gender{String type="gender";public void print(Person p){p.printMyGender(type);}}class Female extends Gender{public Female(){type="female";}}class Male extends Gender{public Male(){type="male";}}class Employee extends Person{public void print(){System.out.print("Employee ");}}class Manager extends Employee{public void print(){System.out.print("Manager ");}}public class Test{public static void main(String[] args){Manager man = new Manager();Employee em = new Employee();Gender gender1 = new Male();Gender gender2 = new Female();gender1.print(man);gender2.print(em);}}对于以上代码,其运行结果是
A. Person male Person female
B. Person gender Person gender
C. Manager male Employee female
D. Manager gender Employee gender
下面关于变量的说法,哪个是不正确的:
A. 实例变量是类的成员变量
B. 类变量用关键字static声明
C. 类变量可以用<实例名>.<类变量名>访问
D. 实例变量可以用<类名>.<实例变量名>访问
下面说法中错误的是
A. FileWriter中append参数为true时,可以实现在文件内容之后写追加操作
B. Java程序中每个字符占2字节
C. 当使用PipedOutputStream类时,最后不需要调用输出流的close方法
D. BufferedWriter类的newLine方法是用于换行