91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用Java實現商品的查找、添加、出庫、入庫操作

發布時間:2021-09-26 18:15:21 來源:億速云 閱讀:245 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關如何使用Java實現商品的查找、添加、出庫、入庫操作的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

具體如下:

package com.jredu.oopch08;public class Goods1 {    private int id;    private String name;    private double price;    private String uom;    private int balance;    public Goods1(int id, String name, double price, String uom, int balance) {        super();        this.id = id;        this.name = name;        this.price = price;        this.uom = uom;        this.balance = balance;    }    public int getId() {        return id;    }    public void setId(int id) {        this.id = id;    }    public String getName() {        return name;    }    public void setName(String name) {        this.name = name;    }    public double getPrice() {        return price;    }    public void setPrice(double price) {        this.price = price;    }    public String getUom() {        return uom;    }    public void setUom(String uom) {        this.uom = uom;    }    public int getBalance() {        return balance;    }    public void setBalance(int balance) {        this.balance = balance;    }}
package com.jredu.oopch08;import java.util.HashMap;import java.util.Iterator;import java.util.Map;import java.util.Scanner;import java.util.Set;public class TestGoods1 {    private static Map map = new HashMap<>();    private static Scanner in = new Scanner(System.in);    public static void get() {        Goods1 goods1 = new Goods1(1001, "脈動水蜜桃 ", 7.0, "1.5l", 50);        Goods1 goods2 = new Goods1(1002, "桃李熟切片 ", 6.5, "400g", 10);        Goods1 goods3 = new Goods1(1003, "吉白芝麻油 ", 9.5, "125ml", 20);        Goods1 goods4 = new Goods1(1004, "雀巢奶咖啡", 1.5, "13g", 200);        Goods1 goods5 = new Goods1(1005, "白玉黃豆芽 ", 2.4, "350g", 50);        map.put(goods1.getId(), goods1);        map.put(goods2.getId(), goods2);        map.put(goods3.getId(), goods3);        map.put(goods4.getId(), goods4);        map.put(goods5.getId(), goods5);    }    public static boolean check(int id) {        // 檢測匹配id        if (!map.containsKey(id)) {            // 沒有匹配id            return false;        } else {            // 有匹配的id            return true;        }    }    public static void add() {// 新增商品        System.out.println(">>新增商品");        System.out.print("請輸入商品編號:");        int id = in.nextInt();        if (new TestGoods1().check(id)) {            // 有匹配的id            System.out.println("對不起,此商品已存在!");        } else {            System.out.print("請輸入商品名稱:");            String name = in.next();            System.out.print("請輸入商品單價:");            double price = in.nextDouble();            System.out.print("請輸入商品單位:");            String uom = in.next();            System.out.print("請輸入商品庫存:");            int balance = in.nextInt();            Goods1 goods6 = new Goods1(id, name, price, uom, balance);            map.put(goods6.getId(), goods6);            System.out.println("新增成功!");        }    }    public static void show() {// 顯示商品信息        System.out.println("商品編號\t商品名稱\t\t商品單價\t單位\t數量");        Set<Map.Entry<Integer, Goods1>> entrySet = map.entrySet();        Iterator<Map.Entry<Integer, Goods1>> iter = entrySet.iterator();        while (iter.hasNext()) {            Map.Entry<Integer, Goods1> entry = iter.next();            System.out.print(entry.getKey() + "\t");            System.out.println(entry.getValue().getName() + "\t\t" + entry.getValue().getPrice() + "\t"                    + entry.getValue().getUom() + "\t" + entry.getValue().getBalance());        }    }    public static void inStore() {// 入庫        System.out.println(">>商品入庫");        System.out.print("請輸入商品編號:");      int id = in.nextInt();      for (int i = 0; i < map.size(); i++) {          if (new TestGoods1().check(id)) {                //有匹配的id                System.out.print("請輸入入庫數量:");                int count = in.nextInt();                    int c = ((Goods1) map.get(id)).getBalance()+count;                    ((Goods1) map.get(id)).setBalance(c);                    break;            }else{                //沒有匹配的id                System.out.println("對不起,此商品不存在!");                break;            }        }    }    public void outStore() {// 出庫        System.out.println(">>商品出庫");        System.out.print("請輸入商品編號:");        int id = in.nextInt();        for (int i = 0; i < map.size(); i++) {          if (new TestGoods1().check(id)) {                //有匹配的id                System.out.print("請輸入出庫數量:");                int count = in.nextInt();                if(count>((Goods1)map.get(id)).getBalance()){                    System.out.println("庫存不足,出庫失敗!");                }else{                    int c = ((Goods1) map.get(id)).getBalance()-count;                    ((Goods1) map.get(id)).setBalance(c);                    break;                }            }else{                //沒有匹配的id                System.out.println("對不起,此商品不存在!");                break;            }        }    }    public static void main(String[] args) {        // TODO Auto-generated method stub        TestGoods1 t = new TestGoods1();        t.get();        //t.add();    //    t.show();    //    t.inStore();        t.show();        t.outStore();        t.show();    }}

感謝各位的閱讀!關于“如何使用Java實現商品的查找、添加、出庫、入庫操作”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

维西| 长子县| 前郭尔| 禄劝| 建昌县| 日土县| 芦溪县| 深水埗区| 双江| 天水市| 正定县| 冀州市| 吉林市| 颍上县| 迁安市| 棋牌| 佛坪县| 文山县| 兴宁市| 当阳市| 抚顺市| 商洛市| 琼海市| 营口市| 中方县| 磴口县| 永安市| 伽师县| 盘锦市| 潮州市| 达州市| 盐池县| 贵南县| 宁河县| 张家口市| 响水县| 信丰县| 通许县| 隆安县| 双牌县| 衢州市|