코드스테이츠 6주차 / Beesbeesbees
베웠던 상속 개념을 적용하는 스프린트 였다
전체적인 파일의 구성은 이렇게 되어있었고 Grub 파일 먼저 작성해보자
속성은 this 로 선언해주면 되고 메소드는 constructor 밖에 선언하면 된다
1. Grub
class Grub {
constructor(){
this.age = 0;
this.color = 'pink'
this.food = 'jelly'
}
eat(){
return 'Mmmmmmmmm ' + this.food
}
}
module.exports = Grub;
2. Bee
extends 와 super을 사용해서 Grub를 상속하고 나머지 케이스를 추가해준다
const Grub = require('./Grub');
class Bee extends Grub{
// TODO..
constructor(){
super();
this.age = 5;
this.color = 'yellow';
this.job = 'Keep on growing';
}
}
module.exports = Bee;
3. HoneyMakerBee
const Bee = require('./Bee');
class HoneyMakerBee extends Bee{
constructor(){
super()
this.age = 10;
this.job = 'make honey';
this.honeyPot = 0;
}
makeHoney(){
return this.honeyPot++
}
giveHoney(){
return this.honeyPot--
}
}
4. ForagerBee
const Bee = require('./Bee');
class ForagerBee extends Bee{
constructor(){
super()
this.age = 10;
this.job = 'find pollen';
this.canFly = true;
this.treasureChest = [];
}
forage(e){
return this.treasureChest.push(e)
}
}
처음에는 어떻게 손을 대야하나 어려울 수 있지만 반복하다보면 조금 쉬워진다..
Author And Source
이 문제에 관하여(코드스테이츠 6주차 / Beesbeesbees), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@support/코드스테이츠-6주차-Beesbeesbees저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)