Shop类
package GouWuChe;
import java.util.Scanner;
public class Shop {
int id; // 商品编号
String name;
double price;
int buyNum; // 购买数量
public static void pay(Shop[] shopcar) {
query(shopcar); // 展示出有多少商品
// 1、定义一个求和变量累加金额
double sum = 0;
// 2、遍历购物车数组中的全部商品对象,累加单价*数量
for (int i = 0; i < shopcar.length; i++) {
Shop good =shopcar[i];
if (good != null) {
sum = sum+ (good.price * good.buyNum);
} else {
break;
}
}
System.out.println("订单总金额为:" + sum);
}
public static void update(Shop[] shopcar, Scanner in) {
// 让用户输入要修改的商品的id,根据id查询出要修改的商品对象
while (true) {
System.out.println("请您输入要修改的商品:");
int id = in.nextInt();
Shop good = getGoodsId(shopcar, id);
if (good == null) {
// 没有该商品
System.out.println("对不起,您没有购买该商品");
} else {
// 存在该商品
System.out.println("请您输入:" + good.name + "商品购买数量:");
int buyNum = in.nextInt();
good.buyNum = buyNum;
System.out.println("修改完成!");
query(shopcar); // 查询是否修改成功
break; // 结束修改
}
}
}
public static Shop getGoodsId(Shop[] shopcar, int id) {
for (int i = 0; i < shopcar.length; i++) {
Shop good = shopcar[i];
if (good != null) {
// 判断这个商品是否是我们要找的商品
if (good.id == id) {
return good;
}
} else {
return null; // 找完了前面存在的商品,都没有找到用户输入的商品
}
}
return null; // 代表找完了100个商品都没有找到用户输入的商品
}
public static void query(Shop[] shopcar) {
// 查询商品对象信息
System.out.println("=====================查询购物车信息如下=====================");
System.out.println("编号:\t\t名称:\t\t价格:\t\t购物数量:\t\t");
// 不知道商品在哪,遍历数组
for (int i = 0; i < shopcar.length; i++) {
Shop good = shopcar[i];
if (good != null) {
// 展示商品对象
System.out.println(good.id + "\t\t" + good.name + "\t\t" + good.price + "\t\t" + good.buyNum);
} else {
// 遍历结束
break;
}
}
}
public static void add(Shop[] shopcar, Scanner in) { // 如果不想另外创建一个扫描器对象,声明另外一个参数接承过来
// 1、完成商品添加到购物车的功能
System.out.println("请您输入购买商品的编号(不重复):");
int id = in.nextInt();
System.out.println("请您输入购买商品的名称:");
String name = in.next();
System.out.println("请您输入购买商品的数量:");
int buyNum = in.nextInt();
System.out.println("请您输入购买商品的价格:");
double price = in.nextDouble();
// 2、把这些购买商品的信息封装成一个商品对象
Shop good = new Shop();
good.id = id; // 第一个id是对象的成员变量,是属性;第二个是用户输入进来的参数
good.name = name;
good.buyNum = buyNum;
good.price = price;
// 3、把这些商品对象添加到购物车数组中去
// 不知数组中哪个位置有商品,遍历购物车
for (int i = 0; i < shopcar.length; i++) {
if (shopcar[i] == null) {
// 说明此位置没有商品
shopcar[i] = good; // 把商品对象存入数组
break; // 结束,商品已成功存入,不需要继续找位置
}
}
System.out.println("\n您的商品" + good.name + "已添加到购物车");
}
}
TestShop类
package GouWuChe;
import java.util.Scanner;
public class TestShop {
public static void main(String[] args) {
// 1、定义商品类,用于后期创建商品对象
Shop goods = new Shop();
// 2、定义购物车对象,使用一个数组对象表示
Shop[] shopcar = new Shop[100];
// 3、搭建操作架构
while (true) {
System.out.println("请您选择您的操作:");
System.out.println("1、添加商品到购物车");
System.out.println("2、查询商品");
System.out.println("3、修改商品购买数量");
System.out.println("4、结算金额");
Scanner in = new Scanner(System.in);
System.out.println("请您输入命令:");
int command = in.nextInt();
switch (command) {
case 1:
// 添加商品到购物车
goods.add(shopcar, in); // 把扫描器对象交给add方法参数
break;
case 2:
// 查询购物车商品展示
goods.query(shopcar);
break;
case 3:
// 修改商品的购买数量
goods.update(shopcar, in);
break;
case 4:
// 结算金额
goods.pay(shopcar);
break;
default:
System.out.println("没有改命令操作!请重新选择");
}
}
}
}