加入收藏 | 设为首页 | 会员中心 | 我要投稿 北几岛 (https://www.beijidao.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

库存案例-集合+方法

发布时间:2021-05-20 08:56:29 所属栏目:大数据 来源: https://blog.csdn.net/summoxj
导读:代码如下: 商品类: /* ?* 定义,描述商品的类 ?* 商品:4个属性(商品名字 String,大小 double,价格 double,库存 int) ?*/ //定义类,类名Goods //这个类型的变量,存储到集合中 public class Goods { ?? ?String brand; ?? ?double size; ?? ?double

代码如下:

商品类:

/*
?* 定义,描述商品的类
?* 商品:4个属性(商品名字 String,大小 double,价格 double,库存 int)
?*/
//定义类,类名Goods
//这个类型的变量,存储到集合中
public class Goods {
?? ?String brand;
?? ?double size;
?? ?double price;
?? ?int count;?? ?

}


测试Demo类:

import java.util.*;
/*
?* 实现库存管理案例:
?* 1.存储商品信息:创建出集合,存储商品类型变量;将商品类型的变量存储到集合中
?* 2.查看库存清单:将集合进行遍历,获取出集合中存储的Goods类型变量 输出每一个Goods类型的属性
?*?? 计算求和:总库存,总金额
?* 3.修改商品的库存:集合遍历,获取出集合中存储的Goods类型变量
?*?? 变量调用Goods类的属性count值进行修改(键盘输入)
?*/
public class Demo {
?? ?public static void main(String[] args){
?? ??? ?//创建ArrayList集合,存储Goods类型
?? ??? ?ArrayList<Goods> array=new ArrayList<Goods>();
?? ??? ?//调用添加商品信息的方法
?? ??? ?addGoods(array);
?? ??? ?//进入到死循环中
?? ??? ?while(true){
?? ??? ??? ?//调用选择功能的方法,获取用户输入的序号
?? ??? ??? ?int number=chooseFunction();
?? ??? ??? ?//对序号进行判断
?? ??? ??? ?switch (number) {
?? ??? ??? ?case 1:
?? ??? ??? ??? ?printStore(array);
?? ??? ??? ??? ?break;
?? ??? ??? ?case 2:
?? ??? ??? ??? ?update(array);
?? ??? ??? ??? ?break;
?? ??? ??? ?case 3:
?? ??? ??? ??? ?return;
?? ??? ??? ?default:
?? ??? ??? ??? ?System.out.println("无此功能!");
?? ??? ??? ??? ?break;
?? ??? ??? ?}
?? ??? ?}
?? ?}
?? ?
?? ?/*
?? ? * 定义方法,将商品的信息存储到集合中
?? ? * 集合是所有方法的共享数据,参数传递
?? ? */
?? ?public static void addGoods(ArrayList<Goods> array){
?? ??? ?//创建商品类型变量 Goods类型的变量
?? ??? ?Goods g1=new Goods();
?? ??? ?Goods g2=new Goods();
?? ??? ?g1.brand="MacBook";
?? ??? ?g1.size=13.3;
?? ??? ?g1.price=9999;
?? ??? ?g1.count=3;
?? ??? ?
?? ??? ?g2.brand="Thinkpad";
?? ??? ?g2.size=15.6;
?? ??? ?g2.price=6999;
?? ??? ?g2.count=1;
?? ??? ?
?? ??? ?array.add(g1);
?? ??? ?array.add(g2);
?? ?}
?? ?
?? ?/*
?? ? * 定义方法,查看库存清单,遍历集合
?? ? */
?? ?public static void printStore(ArrayList<Goods> array){
?? ??? ?//输出表头
?? ??? ?System.out.println("----------------商场库存清单---------------");
?? ??? ?System.out.println("品牌型号 ?? ?t尺寸t价格t 库存数");
?? ??? ?//定义变量,保存总库存数和总金额
?? ??? ?int totalCount=0;
?? ??? ?double totalMoney=0;
?? ??? ?//遍历集合
?? ??? ?for(int i=0;i<array.size();i++){
?? ??? ??? ?Goods g=array.get(i);
?? ??? ??? ?System.out.println(g.brand+" t"+g.size+"t"+g.price+"t"+g.count);
?? ??? ??? ?totalCount=totalCount+g.count;
?? ??? ??? ?totalMoney=totalMoney+totalCount*g.price;
?? ??? ?}
?? ??? ?System.out.println("总库存:"+totalCount);
?? ??? ?System.out.println("总金额:"+totalMoney);
?? ?}
?? ?
?? ?/*
?? ? * 方法定义,修改库存
?? ? * 键盘输入,将Goods中的属性值进行修改
?? ? */
?? ?public static void update(ArrayList<Goods> array){
?? ??? ?Scanner sc=new Scanner(System.in);
?? ??? ?//遍历集合,获取集合中每个元素
?? ??? ?for(int i=0;i<array.size();i++){
?? ??? ??? ?//集合方法get获取的是集合的元素,类型为Goods
?? ??? ??? ?Goods g=array.get(i);
?? ??? ??? ?System.out.println("请输入"+g.brand+"的库存数:");
?? ??? ??? ?g.count=sc.nextInt();
?? ??? ?}
?? ?}
?? ?
?? ?// 定义方法,实现选择菜单,用户根据功能选择菜单
?? ?public static int chooseFunction(){
?? ??? ?System.out.println("-----------------库存管理-----------------");
?? ??? ?System.out.println("1.查看库存清单");
?? ??? ?System.out.println("2.修改商品库存数量");
?? ??? ?System.out.println("3.退出");
?? ??? ?System.out.println("请输入要执行的操作序号:");
?? ??? ?Scanner sc=new Scanner(System.in);
?? ??? ?int num= sc.nextInt();
?? ??? ?return num;
?? ?}
}

(编辑:北几岛)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读