- 질문 게시판입니다.
Date 17/10/19 15:33:52
Name   二ッキョウ니쿄
Subject   자바 질문입니다
package com.ex11market;
[메인클래스]
public class MarketMain {
static Goods[] g = { new Goods("g01", "레쓰비", 25, 900), new Goods("g02", "박카스", 25, 700),
new Goods("g03", "ABC초콜릿", 25, 1600), new Goods("g04", "크리넥스", 25, 2000),
new Goods("g05", "전자담배", 25, 90000) };
static Customer[] c = { new Customer("010-1111-1111", "서울이", "10-10"),
new Customer("010-1212-1212", "고려놈", "10-18"), new Customer("010-1313-1313", "연세놈", "01-11"),
new Customer("010-1414-1414", "서강이", "02-27"), new Customer("010-1515-1515", "세종이", "06-30") };

public static void main(String[] args) {
sell("g05", "1515", 3);
sell("g02", "1212", 5);
}

private static void sell(String gCode, String subTel, int su) {
int i, gIndex, cIndex;
for (i = 0; i < g.length; i++) {
if (g[i].getgCode().equals(gCode)) {
break;
}
}
if (i == g.length) {
System.out.println("상품코드가 잘못 되었습니다");
return;
}
gIndex = i; // 상품이 가르키는 곳의 인덱스
for (i = 0; i < c.length; i++) {
String tel = c[i].getTel();// 010-9999-9999
if (tel.substring(9).equals(subTel)) {
break;
}
}
if (i == c.length) {
System.out.println("전화번호가 잘못 되었습니다. 회원가입하시죠");
return;
}
cIndex = i; // 고객을 가르키는 곳의 인덱스
int tempSu = g[gIndex].getStock() - su;
if (tempSu < 0) {
System.out.println("재고량이 부족합니다. 죄송합니다.");
System.out.println("사장님!" + g[gIndex].getgName() + "얼른 주문하세요");
return;
}
g[gIndex].setStock(tempSu);
String gName = g[gIndex].getgName();
int price = g[gIndex].getPrice();
c[cIndex].buy(gName, price, su);
}

}

[상품클래스]
public class Goods {
private String gCode;
private String gName;
private int stock;
private int price;
public Goods() {
}
public Goods(String gCode, String gName, int stock, int price) {
this.gCode = gCode;
this.gName = gName;
this.stock = stock;
this.price = price;
}
public String getgCode() {
return gCode;
}
public void setgCode(String gCode) {
this.gCode = gCode;
}
public String getgName() {
return gName;
}
public void setgName(String gName) {
this.gName = gName;
}
public int getStock() {
return stock;
}
public void setStock(int stock) {
this.stock = stock;
}
public int getPrice() {
return price;
}
public void setPrice(int price) {
this.price = price;
}

}

[고객클래스]

import java.text.SimpleDateFormat;
import java.util.Date;

public class Customer {
private String tel;
private String cName;
private int money;
private int point;
private String birth;
private boolean vip;
public Customer() {
}
public Customer(String tel, String cName, String birth) {
this.tel = tel;
this.cName = cName;
this.birth = birth;
money = 0; point = 0;
}
public void changedTel(String cName,String tel) {
this.tel = tel;
}
public void buy(String gName, int price, int su) {
if(price<0) {
System.out.println("구매금액이 잘못되었습니다");
return;
}
money += price*su;
int thispoint = (int)(price*su*0.1);
point += thispoint;
if(money>=1000000 && vip == false) {
vip = true;
System.out.println("vip가 되셨습니다");
}
msgBirth();
System.out.println(gName+""+su+"개 *"+price+"원 = "+(price*su));
System.out.println("이번 누적 포인트는 "+thispoint+"원 입니다");
System.out.println(cName+"고객님 포인트 합계 : "+point+"원");
System.out.println("★ ★ ★ 감  사  합  니  다 ★ ★ ★");
}
public void msgBirth() {
Date now = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("MM-dd");
String today = sdf.format(now);
if(birth.equals(today)) {
System.out.println(cName+"님 생일 축하드립니다");
point+=3000;
System.out.println("생일 기념으로 3000포인트가 적립됩니다");
}
}
public String getTel() {
return tel;
}
public void setTel(String tel) {
this.tel = tel;
}
public String getcName() {
return cName;
}
public void setcName(String cName) {
this.cName = cName;
}
public int getMoney() {
return money;
}
public void setMoney(int money) {
this.money = money;
}
public int getPoint() {
return point;
}
public void setPoint(int point) {
this.point = point;
}
public String getBirth() {
return birth;
}
public void setBirth(String birth) {
this.birth = birth;
}
public boolean isVip() {
return vip;
}
public void setVip(boolean vip) {
this.vip = vip;
}
}
[콘솔창 결과물]

전자담배3개 *90000원 = 270000
이번 누적 포인트는 27000원 입니다
세종이고객님 포인트 합계 : 27000원
★ ★ ★ 감  사  합  니  다 ★ ★ ★
박카스5개 *700원 = 3500
이번 누적 포인트는 350원 입니다
고려놈고객님 포인트 합계 : 350원
★ ★ ★ 감  사  합  니  다 ★ ★ ★

=================================================================================

안녕하세요 자바 4주차 공부중인 코린이입니다.
슈퍼마켓에서 배열등을 이용해 콘솔창에서 물건을 사고 재고랑 가격, 포인트 등을 만드는 코드를 짰는데요
제가 배운 영역에서 어떻게 더 리팩토링해서 보기 좋고 더 나은 ? 상태로 만들어야 할지 더 알수가 없어서 질문드립니다.
혹시 어떤식으로 고치는게 좋을까요?
제반지식은 본문에 쓰인 코드랑 싱글턴, 스트레터지 패턴, 대표적인 api 몇가지랑 추상화,인터페이스, 상속, 접근제한자 및 기본적인 변수 연산자 제어문 배열정도입니다..

깔끔하게 올릴 방법을 몰라서 이렇게 올리는데 도움 주시면 감사드리겠습니다.



0


목록
번호 제목 이름 날짜 조회 추천
공지 질문 게시판 이용 규정 11 토비 15/06/19 23599 4
16314 체육/스포츠레깅스 추천 바랍니다 1 + 맥주만땅 24/11/24 23 0
16313 기타외제차는 국산차보다 유지비도 훨씬 많이 더 나오는지요...? 6 홍당무 24/11/23 317 0
16312 기타차량 선택장애가 왔습니다 (카니발 vs 펠리세이드) 8 쉬군 24/11/23 238 0
16311 문화/예술안 읽히지만 좋은 책 추천 받읍니다 35 빈둥 24/11/22 592 2
16310 가정/육아대학원 동기 출산 선물 13 + 카르스 24/11/21 407 0
16308 경제부동산 투자 어떻게 공부하면 좋을까요 4 열한시육분 24/11/21 337 0
16307 법률소액사기 신고를 하고 싶습니다. 6 whenyouinRome... 24/11/21 415 0
16306 교육통계/데이터과학 공부하는 방법 6 [익명] 24/11/21 335 0
16305 기타차량에 사제 어라운드뷰 설치해보신 분 계실까요? 7 쉬군 24/11/20 371 0
16304 여행이번주 토요일 오후 단풍, 은행 명소는 어디일까요? 3 化神 24/11/20 247 0
16303 문화/예술근본 있는(?) 추리소설을 추천해 주세요 20 호미밭의파스꾼 24/11/20 448 0
16302 IT/컴퓨터영상 코덱 관련 질문 드립니다..! 4 햄볶는돼지 24/11/19 160 0
16301 IT/컴퓨터빽빽히 내용이 채워진 엑셀파일 출력본을 OCR로 인식하고 싶습니다. 2 FTHR컨설팅 24/11/19 320 0
16300 진로스스로 하고싶지만서도 타인한테 기대고 싶기도 합니다. 9 활활태워라 24/11/19 492 0
16299 경제행복주택에 살고 있는 중인데 영구임대주택에 당첨되었습니다. 17 [익명] 24/11/18 920 0
16298 의료/건강손이 저립니다 11 린디합도그 24/11/18 432 0
16297 기타밀도 있게 일하는 법은 무엇일까요? 3 데굴데굴 24/11/18 453 1
16296 기타디지털 피아노 혹시 아시는 분 있을까요? 18 TEMPLATE 24/11/18 404 0
16295 IT/컴퓨터조금 시끄러운 환경에서 쓸 수 있는 화상회의용 이어폰을 찾고 있습니다. 2 이러사우호 24/11/18 263 0
16294 기타자동차 보험은 한 회사로 쭉 가는게 나은 건가요? 13 퍼그 24/11/18 440 0
16293 IT/컴퓨터400 Bad Request No required SSL certificate was sent 해결방법 있을까요? 4 활활태워라 24/11/18 297 0
16292 체육/스포츠트레드밀에서 쓸 러닝화 뭐가 좋을까요? 6 blu 24/11/17 326 0
16291 IT/컴퓨터개인용 오피스365+원드라이브 유지 어떤 방법이 경제적인가요? 5 열한시육분 24/11/17 405 0
16290 교육토플 vs. 아이엘츠 9 말하는감자 24/11/16 469 0
목록

+ : 최근 2시간내에 달린 댓글
+ : 최근 4시간내에 달린 댓글

댓글