首页 > TAG信息列表 > arrShop

Java 入门16 面向对象实现之前的小案例购物车

  Goods 商品类 package com.heima.Shop; public class Goods { private String name; private double price; private int buyNumber; //生成 无参构造器 public Goods() { } //生成有参构造器 public Goods(String name, double price,