java实现超市管理系统

作者:气死的笨喵 时间:2022-06-23 13:19:06 

本文实例为大家分享了java实现超市管理系统的具体代码,供大家参考,具体内容如下

实现功能

使用选择结构,循环结构,数组的知识实现一个超市管理系统

运行结果:货物清单:

java实现超市管理系统

添加商品功能:

java实现超市管理系统

删除商品功能:

java实现超市管理系统

修改商品:

java实现超市管理系统

商品货物实体类


import java.util.Arrays;

public class Goods {
private int id;
private double price;
private String name;

public Goods(int id, double price, String name) {
 this.id = id;
 this.price = price;
 this.name = name;
}

public int getId() {
 return id;
}

public void setId(int id) {
 this.id = id;
}

public double getPrice() {
 return price;
}

public void setPrice(double price) {
 this.price = price;
}

public String getName() {
 return name;
}

public void setName(String name) {
 this.name = name;
}

public Goods() {
}

//增加商品
public Goods[] add(Goods[]goods,Goods newGood){
 goods= Arrays.copyOf(goods,goods.length+1);
 goods[goods.length-1]=newGood;
 return goods;
}
//删除商品
public static Goods[] del(Goods[]goods,int id){
 int i=0;
 while(true){
  if(goods[i].getId()==id){
   goods[i]=null;
   return goods;
  }
  i++;
  if(i>=goods.length){
   return goods;
  }
 }

}
//添加商品
public static Goods[] change(Goods[]goods,int id,int newId,double newPrice,String newName){
 int i=0;
 while (true){
  if(goods[i].getId()==id){
  goods[i].setId(newId);
  goods[i].setPrice(newPrice);
  goods[i].setName(newName);
  return goods;
 }
  i++;
  if(i>=goods.length){
   return goods;
  }
 }
}
}

超市管理系统类


import java.util.Scanner;

public class marketManager {
public static void main(String[] args) {
 Scanner sc = new Scanner(System.in);
 Goods g1=new Goods(1000,10,"笔记本");
 Goods g2=new Goods(1001,2,"西红柿");
 Goods g3=new Goods(1002,5,"辣条");
 Goods []goods={g1,g2,g3};
 while (true) {
  System.out.println("========超市管理系统=======");
  System.out.println("1.货物清单 2.增加商品 3.删除商品 4.修改商品 5.退出");
  System.out.println("请输入你要操作的编号:");
  int i = sc.nextInt();
  switch (i){
   case 1:
    System.out.println("=======商品清单=======");
    System.out.println("商品编号"+"\t\t"+"商品单价"+"\t\t"+"商品名称");
    for (Goods a:goods) {
     if(a==null){
      continue;
     }
     System.out.println(a.getId()+"\t\t"+a.getPrice()+"\t\t"+a.getName());

}
    continue;
   case 2:
    System.out.println("你选择的是增加商品的功能");
    System.out.println("请输入你要添加的编号:");
    int Id = sc.nextInt();
    System.out.println("请输入你要添加的商品价格:");
    double price = sc.nextDouble();
    System.out.println("请输入你要添加的商品名称");
    String name = sc.next();
    Goods good=new Goods(Id,price,name);
    goods = good.add(goods, good);
    System.out.println("添加成功!");
    continue;
   case 3:
    System.err.println("你选择的是删除商品功能");
    System.out.println("请输入你要操作的编号:");
    Id = sc.nextInt();
    goods=Goods.del(goods,Id);
    System.out.println("删除成功!");
    continue;
   case 4:
    System.out.println("你选择的是修改商品功能");
    System.out.println("请输入你要操作的编号:");
    Id=sc.nextInt();
    System.out.println("请输入修改后的编号:");
    int newId = sc.nextInt();
    System.out.println("请输入修改后的价格:");
    double newPrice = sc.nextDouble();
    System.out.println("请输入修改后的商品名称:");
    String newName=sc.next();
    goods=Goods.change(goods,Id,newId,newPrice,newName);
    continue;
   case 5:
    return;
  }

}
}
}

来源:https://blog.csdn.net/qq_40459545/article/details/109366379

标签:java,超市,管理系统
0
投稿

猜你喜欢

  • springboot+gradle 构建多模块项目的步骤

    2023-02-19 00:33:31
  • C# 开发日志本地化工具

    2023-08-27 21:57:05
  • Android开发之HttpClient异步请求数据的方法详解【附demo源码下载】

    2023-01-09 11:08:31
  • Android中卡顿优化布局详细介绍

    2022-10-28 10:53:00
  • Java实现获取内网的所有IP地址

    2023-01-01 07:48:56
  • Java毕业设计实战之共享租车信息管理系统的实现

    2022-08-02 13:37:32
  • Android之Gallery使用例子

    2021-06-16 22:19:38
  • C#读取系统字体颜色与大小的方法

    2021-12-29 07:54:57
  • Android实现可拖拽的GridView效果长按可拖拽删除数据源

    2022-10-22 17:39:32
  • SpringMVC自定义拦截 器登录检测功能的实现代码

    2023-07-27 18:33:05
  • Java使用组件编写窗口实现网络图片显示

    2023-04-14 18:06:04
  • Java中BeanUtils.copyProperties基本用法与小坑

    2021-11-04 22:09:01
  • java的泛型你真的了解吗

    2022-07-25 09:40:06
  • java中成员变量与局部变量区别分析

    2023-07-12 13:45:21
  • 浅谈Android View绘制三大流程探索及常见问题

    2022-03-02 00:01:26
  • Winform下实现图片切换特效的方法

    2023-04-20 21:26:28
  • Java下载文件时文件名乱码问题解决办法

    2023-08-23 17:37:03
  • Android自定义View实现左右滑动选择出生年份

    2023-05-15 22:58:49
  • Java 梳理总结关于static关键字常见问题

    2021-12-11 11:49:01
  • 使用jpa之动态插入与修改(重写save)

    2021-07-04 21:02:26
  • asp之家 软件编程 m.aspxhome.com