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

软件工程

开发平台:

Java

  1. package com.company.section1;
  2. import java.util.Random;
  3. /**
  4.  * @author cbf4Life cbf4life@126.com
  5.  * I'm glad to share my knowledge with you all.
  6.  * 销售
  7.  */
  8. public class Sale {
  9. //销售IBM型号的电脑
  10. public void sellIBMComputer(int number){
  11. //访问库存
  12. Stock stock = new Stock();
  13. //访问采购
  14. Purchase purchase = new Purchase();
  15. if(stock.getStockNumber()<number){  //库存数量不够销售
  16. purchase.buyIBMcomputer(number);
  17. }
  18. System.out.println("销售IBM电脑"+number+"台");
  19. stock.decrease(number);
  20. }
  21. //反馈销售情况,0——100之间变化,0代表根本就没人卖,100代表非常畅销,出1一个卖一个
  22. public int getSaleStatus(){
  23. Random rand = new Random(System.currentTimeMillis());
  24. int saleStatus = rand.nextInt(100);
  25. System.out.println("IBM电脑的销售情况为:"+saleStatus);
  26. return saleStatus;
  27. }
  28. //折价处理
  29. public void offSale(){
  30. //库房有多少卖多少
  31. Stock stock = new Stock();
  32. System.out.println("折价销售IBM电脑"+stock.getStockNumber()+"台");
  33. }
  34. }