삭제합니다.
## ArrayList에 상품을 담아보세요. 캔디를 예로 들면 ``` if (input.equalsIgnoreCase("CD")) { System.out.print("사탕이름: "); name = in.nextLine(); System.out.print("무게(g): "); weight = in.nextInt(); Candy cd = new Candy(name, weight); cd.show(); // 생성된 캔디를 ArrayList에 추가 list.add(cd); } ```
ArrayList<Candy> list = new ArrayList<Candy>(); ArrayList<Cola> list2 = new ArrayList<Cola>(); 이런식으로 선언하는게 맞나요?
네 맞습니다. 주어진 코드를 활용하려면 아래와 같이 사용하세요. ``` ArrayList<Goods> list = new ArrayList<Goods>(); ```
요청건에 대해 이메일 보냈습니다. 확인하고 연락주세요