코드 스멜 93 - 무엇이든 보내주세요
TL;DR: Create a clear contract. Expect just one protocol.
문제
솔루션
샘플 코드
잘못된
<?
function parseArguments($arguments) {
$arguments = $arguments ?: null;
//Always the billion-dollar mistake
if (is_empty($arguments)) {
$this->arguments = http_build_query($_REQUEST);
//Global coupling and side effects
} elseif (is_array($arguments)) {
$this->arguments = http_build_query($arguments);
} elseif (!$arguments) { //null unmasked
$this->arguments = null;
} else {
$this->arguments = (string)$arguments;
}
}
오른쪽
<?
function parseArguments(array $arguments) {
$this->arguments = $arguments;
//much cleaner, isn't it ?
}
발각
우리는 이러한 종류의 메소드가 서로 다른 일을 할 때 감지할 수 있습니다.
태그
<?
function parseArguments($arguments) {
$arguments = $arguments ?: null;
//Always the billion-dollar mistake
if (is_empty($arguments)) {
$this->arguments = http_build_query($_REQUEST);
//Global coupling and side effects
} elseif (is_array($arguments)) {
$this->arguments = http_build_query($arguments);
} elseif (!$arguments) { //null unmasked
$this->arguments = null;
} else {
$this->arguments = (string)$arguments;
}
}
<?
function parseArguments(array $arguments) {
$this->arguments = $arguments;
//much cleaner, isn't it ?
}
우리는 이러한 종류의 메소드가 서로 다른 일을 할 때 감지할 수 있습니다.
태그
결론
마법 주물과 유연성에는 가격이 있습니다. 그들은 쓰레기를 양탄자 아래에 놓고 빠른 실패 원칙을 위반합니다.
처지
Code Smell 69 - Big Bang (JavaScript Ridiculous Castings)
Maxi Contieri ・ 2021년 5월 4일 ・ 2분 읽기
#codenewbie
#oop
#programming
#webdev
코드 냄새 06 - 너무 영리한 프로그래머
Maxi Contieri ・ 2020년 10월 25일 ・ 2분 읽기
#codenewbie
#tutorial
#beginners
코드 냄새 12 - Null
Maxi Contieri ・ 2020년 10월 31일 ・ 2분 읽기
#codenewbie
#tutorial
#oop
학점
사진 제공: Hennie Stander on Unsplash
Referential transparency is a very desirable property: it implies that functions consistently yield the same results given the same input, irrespective of where and when they are invoked.
에드워드 가슨
소프트웨어 엔지니어링 좋은 인용문
Maxi Contieri ・ 12월 28일 '20 ・ 13분 읽기
#codenewbie
#programming
#quotes
#software
이 기사는 CodeSmell 시리즈의 일부입니다.
코드에서 냄새 나는 부분을 찾는 방법
Maxi Contieri ・ 2021년 5월 21일 ・ 4분 읽기
#codenewbie
#tutorial
#codequality
#beginners
Reference
이 문제에 관하여(코드 스멜 93 - 무엇이든 보내주세요), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/mcsee/code-smell-93-send-me-anything-16m3
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Code Smell 69 - Big Bang (JavaScript Ridiculous Castings)
Maxi Contieri ・ 2021년 5월 4일 ・ 2분 읽기
코드 냄새 06 - 너무 영리한 프로그래머
Maxi Contieri ・ 2020년 10월 25일 ・ 2분 읽기
코드 냄새 12 - Null
Maxi Contieri ・ 2020년 10월 31일 ・ 2분 읽기
학점
사진 제공: Hennie Stander on Unsplash
Referential transparency is a very desirable property: it implies that functions consistently yield the same results given the same input, irrespective of where and when they are invoked.
에드워드 가슨
소프트웨어 엔지니어링 좋은 인용문
Maxi Contieri ・ 12월 28일 '20 ・ 13분 읽기
#codenewbie
#programming
#quotes
#software
이 기사는 CodeSmell 시리즈의 일부입니다.
코드에서 냄새 나는 부분을 찾는 방법
Maxi Contieri ・ 2021년 5월 21일 ・ 4분 읽기
#codenewbie
#tutorial
#codequality
#beginners
Reference
이 문제에 관하여(코드 스멜 93 - 무엇이든 보내주세요), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/mcsee/code-smell-93-send-me-anything-16m3
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Referential transparency is a very desirable property: it implies that functions consistently yield the same results given the same input, irrespective of where and when they are invoked.
소프트웨어 엔지니어링 좋은 인용문
Maxi Contieri ・ 12월 28일 '20 ・ 13분 읽기
코드에서 냄새 나는 부분을 찾는 방법
Maxi Contieri ・ 2021년 5월 21일 ・ 4분 읽기
Reference
이 문제에 관하여(코드 스멜 93 - 무엇이든 보내주세요), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mcsee/code-smell-93-send-me-anything-16m3텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)