Client.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.section1;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  * 我要关心我自己的公司了
  6.  */
  7. public class Client {
  8. public static void main(String[] args) {
  9. System.out.println("-------房地产公司是这个样子运行的-------");
  10. //先找到我的公司
  11. HouseCorp houseCorp =new HouseCorp();
  12. //看我怎么挣钱
  13. houseCorp.makeMoney();
  14. System.out.println("n");
  15. System.out.println("-------服装公司是这样运行的-------");
  16. ClothesCorp clothesCorp = new ClothesCorp();
  17. clothesCorp.makeMoney();
  18. }
  19. }