当前位置:   article > 正文

库存管理系统(java)_库存管理系统java代码

库存管理系统java代码

掌握List集合、Set集合以及Map集合的使用;熟悉泛型的使用;掌握Iterator迭代器和foreach循环的使用。

像商城和超市这样的地方,都需要有自己的库房,并且库房商品的库存变化有专人记录,这样才能保证商城和超市正常运转。

本例要求编写一个程序,模拟库存管理系统。该系统主要包括系统首页、商品入库、商品显示和删除商品功能。每个功能的具体要求如下:

(1)系统的首页:用于显示系统所有的操作,并且可以选择使用某一个功能。

(2)商品入库功能:首先提示是否要录入商品,根据用户输入的信息判断是否需要录入商品。如果需要录入商品,则需要用户输入商品的名称、颜色、价格和数量等信息。录入完成后,提示商品录入成功并打印所有商品。如果不需要录入商品,则返回系统首页。

(3)商品显示功能:用户选择商品显示功能后,在控制台打印仓库所有商品信息。

(4)删除商品功能:用户选择删除商品功能后,根据用户输入的商品编号删除商品,并在控制台打印删除后的所有商品。

指导:

1.每一种商品都可以存储在一个Java对象中,所以先定义一个Goods类,属性包括name,color,price,number,方法包括上述属性的set和get方法以及构造方法。

2. 在主类中定义List接口对象,用ArrayList实现类的构造方法构造此对象。调用add()方法将Goods对象加入List对象中,使用remove()方法删除已加入List队列中的Goods对象。

3. 用foreach循环方式读取List对象中的数据并显示。

代码如下

  1. package main;
  2. import java.util.Scanner;
  3. import java.util.ArrayList;
  4. import java.util.Iterator;
  5. class Goods
  6. {
  7.     String name;
  8.     int num;
  9.     String colour;
  10.     double price;
  11.     Goods(String name,int num,String colour,double price)
  12.     {
  13.         this.name=name;
  14.         this.num=num;
  15.         this.colour=colour;
  16.         this.price=price;
  17.     }
  18.     public String getName()
  19.     {
  20.         return name;
  21.     }
  22.     public int getNum()
  23.     {
  24.         return num;
  25.     }
  26.     public String getColour()
  27.     {
  28.         return colour;
  29.     }
  30.     public double getPrice()
  31.     {
  32.         return price;
  33.     }
  34. }
  35. public class Test {
  36.     public static void main(String[] args) {
  37.         ArrayList<Goods> list = new ArrayList<Goods>();
  38.         list.add(new Goods("牛奶", 150, "白色", 58.9));
  39.         list.add(new Goods("洗衣液", 100, "蓝色", 69.9));
  40.         list.add(new Goods("纸", 200, "黄色", 19.9));
  41.         list.add(new Goods("青菜", 300, "绿色", 8.9));
  42.         list.add(new Goods("猪肉", 250, "红色", 25.9));
  43.         String st = "yes";
  44.         while (st.equals("yes")) {
  45.             System.out.println("欢迎使用库房管理系统,请选择要进行的操作");
  46.             System.out.println("1. 商品入库");
  47.             System.out.println("2. 商品显示");
  48.             System.out.println("3. 删除商品");
  49.             Scanner sc = new Scanner(System.in);
  50.             int s = sc.nextInt();
  51.             if (s == 1) {
  52.                 System.out.println("开始录入商品信息!");
  53.                 Scanner sc1 = new Scanner(System.in);
  54.                 System.out.println("请输入商品的名称:");
  55.                 String name = sc1.next();
  56.                 System.out.println("请输入商品的数量:");
  57.                 int num = sc1.nextInt();
  58.                 System.out.println("请输入商品的颜色:");
  59.                 String colour = sc1.next();
  60.                 System.out.println("请输入商品的价格:");
  61.                 double price = sc1.nextDouble();
  62.                 list.add(new Goods(name, num, colour, price));
  63.             } else if (s == 2) {
  64.                 Iterator it = list.iterator();
  65.                 while (it.hasNext()) {
  66.                     Goods goods = (Goods) it.next();
  67.                     System.out.println(goods.getName() + " " + goods.getNum() + " " + goods.getColour() + " " + goods.getPrice());
  68.                 }
  69.             } else if (s == 3) {
  70.                 System.out.println("请输入要删除的商品的编号");
  71.                 Scanner sc3 = new Scanner(System.in);
  72.                 int a = sc3.nextInt();
  73.                 list.remove(a);
  74.             }
  75.             System.out.println("输入4则退出系统");
  76.             Scanner sc5 = new Scanner(System.in);
  77.             int c = sc5.nextInt();
  78.             if (c == 4)
  79.                 break;
  80.         }
  81.     }
  82. }

结果截图:

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/544651
推荐阅读
相关标签
  

闽ICP备14008679号