package mall;


public class Goods {  

private int gId;        //상품 번호

private String gName;   //상품 이름

private int gPrice;     // 상품 가격


public Goods() {

}


public Goods(int gId, String gName, int gPrice) {

super();

this.gId = gId;

this.gName = gName;

this.gPrice = gPrice;

형들  내가 개바보라서 그런데 이거 해석해줘  super가 뭐고 Goods 과 왜 3개나 나와