인수 객체 도입 (Introduce Parameter Object)
하나씩 리팩토링 기술 요약
개인적으로 간단하고 도입하기 쉽다고 생각하는 것으로부터
목적
즉시 꺼낼 수 있도록
기본 작업 사이클
인수 객체 도입(Introduce Parameter Object)이란?
여러 인수를 하나의 객체로 결합
인수 정보는 변경하지 않고 숫자를 줄이는 것
포인트
예
class Doraemon
attr_reader :calorie
def eat(bean_paste, castella)
@calorie = bean_paste + castella
end
def large
@calorie += 500
end
end
↓
class Dorayaki
attr_reader :calorie, :bean_paste, :castella
def initialize(bean_paste, castella)
@bean_paste = bean_paste
@castella = castella
end
def large
@calorie = @bean_paste + @castella + 500
end
end
class Doraemon
def eat(dorayaki)
dorayaki.bean_paste + dorayaki.castella
end
end
책 정보
Jay Fields (저자), Shane Harvie (저자), Martin Fowler (저자), Kent Beck (저자),
나가오 타카히로 (역), 리팩토링 : Ruby 에디션
htps : // 아 mz 응. 및 / 2VlyWML
잡감
어떤 조합으로 기술을 인식하기 위해 조금씩
Reference
이 문제에 관하여(인수 객체 도입 (Introduce Parameter Object)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/dich1/items/32419db337319fcdfef9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)