커피머신 만들기

박찬욱·2023년 9월 27일
0

TIL

목록 보기
16/21

private와 protected 그리고 static을 언제 사용해야하는지
그리고 객체지향에 맞게 상태와 메서드를 구현해보기 위해서 간단한 커피머신 만들기를 직접 구현해보았다.

이렇게 엉망이지만(?) 간단한 다이어그램을 만들어보았다.

class CoffeeMachine {
  _MAX_COFFEE_BEANS = 0;
  static coffeeBeans_Per_Shot;
  _shot = 0;

  constructor(beans) {
    this._MAX_COFFEE_BEANS = beans;
  }

  static makeMachine(beans) {
    return new CoffeeMachine(beans);
  }

  get coffeeBeansAmount() {
    return this._MAX_COFFEE_BEANS;
  }

  set setShot(shot) {
    this._shot = shot;
  }

  set fillCoffeeBeans(beans) {
    if (beans < 0) throw new Error('커피콩의 양은 음수가 될 수 없습니다.');
    this._MAX_COFFEE_BEANS += beans;
  }

  makeCoffee() {}
}

module.exports = CoffeeMachine;

먼저 커피머신 클래스이다.
커피머신 클래스를 상속해서 기본커피머신, 라떼커피머신을 구현하고 싶었다.

각각의 커피머신에 중복되는 기능들이 많아 추상화를 시키기위해 이렇게 부모 클래스인 커피머신 클래스를 만들었다.

추상화는 역할과 기능의 분리이다. 실제 구현은 각각의 서브 클래스에서 기능구현을 하면 되겠다.

여기서 coffeeBeans_Per_Shot을 static으로 지정한 이유는 매번 인스턴스를 생성할 때마다 생성할 필요가 없이 클래스에서 딱 한번 생성해주고 싶기 때문이다.

const CoffeeMachine = require('./coffeeMachine.js');

class BasicCoffeeMachine extends CoffeeMachine {
  static coffeeBeans_Per_Shot = 10;

  static makeMachine(beans) {
    return new BasicCoffeeMachine(beans);
  }

  makeCoffee(shot) {
    this.setShot = shot;
    if (this._MAX_COFFEE_BEANS - this._shot * BasicCoffeeMachine.coffeeBeans_Per_Shot < 0)
      throw new Error('커피콩이 부족합니다...커피콩을 더 채워주세요.');

    this._MAX_COFFEE_BEANS -= this._shot * BasicCoffeeMachine.coffeeBeans_Per_Shot;
    const coffee = {
      shot: this._shot,
      leftoverBeans: this._MAX_COFFEE_BEANS,
    };
    return coffee;
  }
}

const coffeeMachine = BasicCoffeeMachine.makeMachine(100);
console.log(coffeeMachine.makeCoffee(2));
coffeeMachine.fillCoffeeBeans = 20;
console.log('커피콩 양', coffeeMachine.coffeeBeansAmount);
const CoffeeMachine = require('./coffeeMachine');

class LatteMachine extends CoffeeMachine {
  static coffeeBeans_Per_Shot = 5;
  #milk;

  static makeMachine(beans) {
    return new LatteMachine(beans);
  }

  set setMilk(milk) {
    this.#milk = milk;
  }

  makeCoffee(shot, milk = true) {
    this.setShot = shot;
    this.setMilk = milk;
    if (this._MAX_COFFEE_BEANS - this._shot * LatteMachine.coffeeBeans_Per_Shot < 0)
      throw new Error('커피콩이 부족합니다...커피콩을 더 채워주세요.');

    this._MAX_COFFEE_BEANS -= this._shot * LatteMachine.coffeeBeans_Per_Shot;
    const coffee = {
      shot: this._shot,
      milk: this.#milk,
      leftoverBeans: this._MAX_COFFEE_BEANS,
    };
    return coffee;
  }
}

const latteMachine = LatteMachine.makeMachine(100);
console.log(latteMachine.makeCoffee(2, true));
latteMachine.fillCoffeeBeans = 20;
console.log(latteMachine.coffeeBeansAmount);

커피머신 클래스를 상속받아 구현한 기본머신과 라떼머신이다.

타입스크립트처럼 interface가 없기 때문에 직접 클래스로 추상화를 시켜보고, 그리고 프로퍼티들이 왜 private가 되어야하고 static으로 선언해야하는지 생각해보는 시간이 되었다.

그동안에는 이런 키워드들을 사용하지 않고 클래스를 만들어 객체를 생성했는데 다시 한번 객체에 대해 생각해볼 수 있는 시간이 되었다.

profile
대체불가능한 사람이다

0개의 댓글

관련 채용 정보