题目内容

完成程序功能,使得输出结果为:PersonPersonEmployeeEmployee程序源代码为:package view;class Person {void work() {System.out.println("Person");}}class Employee extends Person{void work(){System.out.println("Employee");}void work2(){System.out.println("work2");}}class Controller{static void personWork(Person p) {p.work();}}public class Test{public static void main(String[] args) {Controller.personWork(new Person());[] persons = new Person[3];persons[0]= new Person() ;persons[1]= new Employee() ;persons[2]= new Employee() ;for(Person p:persons)2(p);}}

查看答案
更多问题

进行系统物理设计的是哪个阶段( )。

A. 系统规划
B. 系统分析
C. 系统设计
D. 系统运行

名词解释:管理信息

名词解释:数据通信技术

名词解释:数据组织

答案查题题库