리팩토링 006 - 결과 변수 이름 바꾸기
TL;DR: Use the last call as a semantic guide.
해결된 문제
관련 코드 냄새
코드 냄새 81 - 결과
Maxi Contieri ・ 2021년 6월 19일 ・ 1분 읽기
#oop
#programming
#codenewbie
#tutorial
코드 냄새 79 - TheResult
Maxi Contieri ・ 2021년 6월 14일 ・ 1분 읽기
#webdev
#programming
#oop
#tutorial
단계
코드 냄새 81 - 결과
Maxi Contieri ・ 2021년 6월 19일 ・ 1분 읽기
#oop
#programming
#codenewbie
#tutorial
코드 냄새 79 - TheResult
Maxi Contieri ・ 2021년 6월 14일 ・ 1분 읽기
#webdev
#programming
#oop
#tutorial
샘플 코드
전에
function doubleFavoriteNumber(n) {
return this.favoriteNumber * n;
}
var result = doubleFavoriteNumber(2);
// Many lines after we have no idea what does
// result holds
// var result ???
후에
function doubleFavoriteNumber(n) {
return this.favoriteNumber * n;
}
const favoriteNumberDoubled = doubleFavoriteNumber(2);
// Many instructions after
// We can use favoriteNumberDoubled knowing its semantics
유형
[X] 반자동
많은 이름 휴리스틱과 마찬가지로 변수를 다른 리팩터링 이름 바꾸기 변수로 바꿀 수 있습니다.
왜 코드가 더 나은가요?
변수 범위는 오래 지속될 수 있습니다.
할당과 사용은 서로 매우 멀리 떨어져 있을 수 있습니다.
태그
function doubleFavoriteNumber(n) {
return this.favoriteNumber * n;
}
var result = doubleFavoriteNumber(2);
// Many lines after we have no idea what does
// result holds
// var result ???
function doubleFavoriteNumber(n) {
return this.favoriteNumber * n;
}
const favoriteNumberDoubled = doubleFavoriteNumber(2);
// Many instructions after
// We can use favoriteNumberDoubled knowing its semantics
[X] 반자동
많은 이름 휴리스틱과 마찬가지로 변수를 다른 리팩터링 이름 바꾸기 변수로 바꿀 수 있습니다.
왜 코드가 더 나은가요?
변수 범위는 오래 지속될 수 있습니다.
할당과 사용은 서로 매우 멀리 떨어져 있을 수 있습니다.
태그
또한보십시오
학점
HeungSoon의 Pixabay 이미지
이 문서는 리팩토링 시리즈의 일부입니다.
Reference
이 문제에 관하여(리팩토링 006 - 결과 변수 이름 바꾸기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/mcsee/refactoring-006-rename-result-variables-2fmd
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
HeungSoon의 Pixabay 이미지
이 문서는 리팩토링 시리즈의 일부입니다.
Reference
이 문제에 관하여(리팩토링 006 - 결과 변수 이름 바꾸기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mcsee/refactoring-006-rename-result-variables-2fmd텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)