코드 냄새 81 - 결과
TL;DR: Use good names always. Result is always a very bad name.
문제
솔루션
샘플 코드
잘못된
var result;
result = lastBlockchainBlock();
//
// Many function calls
addBlockAfter(result);
오른쪽
var lastBlockchainBlock;
lastBlockchainBlock = findlastBlockchainBlock();
//...
// Many function calls
// we should refactor them to minimize space
// between variable definition and usage
addBlockAfter(lastBlockchainBlock);
발각
결과라는 단어가 변수 이름이 되는 것을 금지해야 합니다.
태그
var result;
result = lastBlockchainBlock();
//
// Many function calls
addBlockAfter(result);
var lastBlockchainBlock;
lastBlockchainBlock = findlastBlockchainBlock();
//...
// Many function calls
// we should refactor them to minimize space
// between variable definition and usage
addBlockAfter(lastBlockchainBlock);
결과라는 단어가 변수 이름이 되는 것을 금지해야 합니다.
태그
결론
결과는 일반적이고 의미 없는 이름의 예입니다.
리팩토링은 저렴하고 안전합니다.
Always leave the campground cleaner than you found it.
When you find a mess on the ground, clean it, doesn’t matter who did it. Your job is to always leave the ground cleaner for the next campers.
처지
코드 냄새 79 - TheResult
Maxi Contieri ・ 2021년 6월 14일 ・ 1분 읽기
#webdev
#programming
#oop
#tutorial
더 많은 정보
Always leave the campground cleaner than you found it.
When you find a mess on the ground, clean it, doesn’t matter who did it. Your job is to always leave the ground cleaner for the next campers.
코드 냄새 79 - TheResult
Maxi Contieri ・ 2021년 6월 14일 ・ 1분 읽기
더 많은 정보
.
학점
사진 제공: KMA . on Unsplash
Code is like humor. When you have to explain it, it’s bad.
코리 하우스
소프트웨어 엔지니어링 좋은 인용구
Maxi Contieri ・ 12월 28일 '20 ・ 13분 읽기
#codenewbie
#programming
#quotes
#software
이 기사는 CodeSmell 시리즈의 일부입니다.
코드에서 냄새 나는 부분을 찾는 방법
Maxi Contieri ・ 2021년 5월 21일 ・ 4분 읽기
#codenewbie
#tutorial
#codequality
#beginners
Reference
이 문제에 관하여(코드 냄새 81 - 결과), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/mcsee/code-smell-81-result-45ko
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Code is like humor. When you have to explain it, it’s bad.
소프트웨어 엔지니어링 좋은 인용구
Maxi Contieri ・ 12월 28일 '20 ・ 13분 읽기
코드에서 냄새 나는 부분을 찾는 방법
Maxi Contieri ・ 2021년 5월 21일 ・ 4분 읽기
Reference
이 문제에 관하여(코드 냄새 81 - 결과), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mcsee/code-smell-81-result-45ko텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)