코드 냄새 19 — 선택적 인수
6995 단어 oopcodenewbietutorial
TL;DR: Optional Arguments generate a hidden coupling in the name of smaller code.
문제
솔루션
샘플 코드
잘못된
<?
final class Poll {
function _construct(array $questions, bool $annonymousAllowed = false, $validationPolicy = 'Normal') {
if ($validationPolicy == 'Normal') {
$validationPolicy = new NormalValidationPolicy();
}
//...
}
}
//Valid
new Poll([]);
new Poll([], true);
new Poll([], true , new NormalValidationPolicy());
new Poll([], , new StrictValidationPolicy());
오른쪽
<?
final class Poll {
function _construct(array $questions, AnonnyomousStrategy $annonymousStrategy, ValidationPolicy $validationPolicy) {
//...
}
}
//invalid
new Poll([]);
new Poll([], new NoAnonnyomousValidStrategy());
new Poll([], , new StrictValidationPolicy());
//Valid
new Poll([], new NoAnonnyomousValidStrategy(), new StrictValidationPolicy());
발각
언어가 선택적 인수를 지원하면 탐지가 쉽습니다.
태그
<?
final class Poll {
function _construct(array $questions, bool $annonymousAllowed = false, $validationPolicy = 'Normal') {
if ($validationPolicy == 'Normal') {
$validationPolicy = new NormalValidationPolicy();
}
//...
}
}
//Valid
new Poll([]);
new Poll([], true);
new Poll([], true , new NormalValidationPolicy());
new Poll([], , new StrictValidationPolicy());
<?
final class Poll {
function _construct(array $questions, AnonnyomousStrategy $annonymousStrategy, ValidationPolicy $validationPolicy) {
//...
}
}
//invalid
new Poll([]);
new Poll([], new NoAnonnyomousValidStrategy());
new Poll([], , new StrictValidationPolicy());
//Valid
new Poll([], new NoAnonnyomousValidStrategy(), new StrictValidationPolicy());
언어가 선택적 인수를 지원하면 탐지가 쉽습니다.
태그
결론
명시하십시오. 더 짧고 더 많이 결합된 함수 호출보다 가독성이 좋습니다.
더 많은 정보
레거시 시스템을 분리하는 방법
Maxi Contieri ・ 2021년 3월 1일 ・ 7분 읽기
#codenewbie
#programming
#poo
#tutorial
The trouble with programmers is that you can never tell what a programmer is doing until it’s too late.
시모어 크레이
소프트웨어 엔지니어링 좋은 인용문
Maxi Contieri ・ 12월 28일 '20 ・ 13분 읽기
#codenewbie
#programming
#quotes
#software
이 기사는 CodeSmell 시리즈의 일부입니다.
코드에서 냄새 나는 부분을 찾는 방법
Maxi Contieri ・ 2021년 5월 21일 ・ 4분 읽기
#codenewbie
#tutorial
#codequality
#beginners
최종 업데이트: 2021/06/30
Reference
이 문제에 관하여(코드 냄새 19 — 선택적 인수), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mcsee/code-smell-19-optional-arguments-48gc텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)