- 질문 게시판입니다.
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


목록
번호 제목 이름 날짜 조회 추천
8065 기타화장하는 법을 배우는데는 없을까요? 7 셀레네 19/10/18 3047 0
1214 IT/컴퓨터컴알못의 이상징후 두번째 질문입니다. 7 오리꽥 16/06/23 3048 0
5372 IT/컴퓨터폰 화면이 이상합니다 2 아침 18/09/02 3048 0
6658 기타뚜껑 덜 잠겨있던 쨈 먹어도 될까요? 6 라피요탄 19/02/26 3048 0
7879 게임틀래식 애드온 질문(마법부여) leiru 19/09/17 3048 0
13913 문화/예술술 추천 부탁드려요~ 14 soulless 22/09/25 3048 0
14056 과학강력접착 미끄럼방지 테이프 써보신분? 1 전국 홍차넷 협회 22/10/26 3048 0
14757 기타리디북스 구매할만한 장르소설 있을까요? 16 아파 23/04/30 3048 0
6030 법률근로기준법-주휴수당 관련 의문입니다. 17 [익명] 18/12/05 3049 0
6795 철학/종교두려움으로 인해 질문해요 13 [익명] 19/03/19 3049 0
7389 기타양고기 맛집좀 알려주세요 12 헌혈빌런 19/06/26 3049 0
7870 의료/건강척추측만증 질문드립니다. 6 Might 19/09/16 3049 0
9444 기타담배 대용으로 쓸 수 있는것? 16 [익명] 20/05/19 3049 0
9613 기타서울시내 파인다이닝 어디 있을까요? 10 [익명] 20/06/19 3049 0
1618 기타어릴적부터 죽음을 많이 접하신 분? 12 순순한우리집 16/10/07 3050 0
2252 IT/컴퓨터트위터가 정지되었습니다. 불타는밀밭 17/02/04 3050 0
3847 의료/건강남자인데 팔자주름을 없애고 싶어요 4 [익명] 17/12/14 3050 0
6253 문화/예술이 영화 제목이 뭔지 알고 싶어요 3 얼음산책 19/01/08 3050 0
6177 가정/육아친구 출산 선물 추천부탁드립니다. 16 [익명] 18/12/28 3050 0
9827 법률전셋집 누수로 난감한 상황인데 여러분이라면? 7 [익명] 20/07/24 3050 0
13896 과학이 액추에이터가 잘 돌아갈까요? 6 OshiN 22/09/21 3050 0
14133 법률아들 학폭 관련 질문입니다..(답변 완료 본문 펑) 19 whenyouinRome... 22/11/14 3050 0
4544 의료/건강상담이나 치료가 필요한 정도일까요? 3 [익명] 18/04/29 3051 0
4870 경제집 값이 오르는 걸 어떻게 알 수 있나요? 2 별빛 18/06/21 3051 0
12126 기타우산 및 장화 제품이나 브랜드 추천좀 부탁드립니다. 3 어둠달골짜기 21/08/24 3051 0
목록

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

댓글