中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

Java如何實現(xiàn)商品的查找、添加、出庫、入庫操作

小編給大家分享一下Java如何實現(xiàn)商品的查找、添加、出庫、入庫操作,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

創(chuàng)新互聯(lián)建站專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站設(shè)計、做網(wǎng)站、瑪納斯網(wǎng)絡(luò)推廣、微信小程序開發(fā)、瑪納斯網(wǎng)絡(luò)營銷、瑪納斯企業(yè)策劃、瑪納斯品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎;創(chuàng)新互聯(lián)建站為所有大學(xué)生創(chuàng)業(yè)者提供瑪納斯建站搭建服務(wù),24小時服務(wù)熱線:13518219792,官方網(wǎng)址:www.rwnh.cn

具體如下:

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數(shù)量");
        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("請輸入入庫數(shù)量:");
                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("請輸入出庫數(shù)量:");
                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如何實現(xiàn)商品的查找、添加、出庫、入庫操作”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!

網(wǎng)頁標(biāo)題:Java如何實現(xiàn)商品的查找、添加、出庫、入庫操作
文章來源:http://www.rwnh.cn/article38/jdjppp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計、ChatGPT、搜索引擎優(yōu)化、面包屑導(dǎo)航、網(wǎng)站策劃企業(yè)網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

商城網(wǎng)站建設(shè)
上思县| 丹阳市| 宜城市| 油尖旺区| 三原县| 从化市| 象山县| 新建县| 钟祥市| 浙江省| 廊坊市| 余姚市| 交口县| 海兴县| 洛隆县| 美姑县| 东乡族自治县| 深州市| 旬阳县| 深水埗区| 仙居县| 汉沽区| 桑植县| 化德县| 崇文区| 交城县| 襄垣县| 太和县| 乌兰县| 绥棱县| 香格里拉县| 托克托县| 兴文县| 建平县| 临武县| 邵东县| 宣恩县| 鹤峰县| 阜南县| 莱阳市| 文山县|