java第四章编程题(初学篇)

代码:

 1 /*
 2    test.java
 3 */
 4 package test;
 5 public class test {
 6     public static void main(String args[] )
 7     {
 8         CPU ccp= new CPU();
 9         HardDisk hhd=new HardDisk();
10         PC pc =new PC();
11         ccp.setSpeed(2200);
12         hhd.setAmount(200);
13         pc.setCPU(ccp);
14         pc.setHardDisk(hhd);
15         pc.show();
16     }
17 
18 }
View Code

相关文章:

  • 2022-02-10
  • 2022-02-10
  • 2021-09-04
  • 2021-07-07
  • 2021-11-23
  • 2022-03-01
  • 2021-12-05
  • 2021-08-08
猜你喜欢
  • 2021-12-05
  • 2021-06-16
  • 2021-12-19
  • 2022-02-10
  • 2022-02-10
  • 2021-08-31
  • 2021-12-07
相关资源
相似解决方案