Code Smell 141 - 엔진, 차량, ImpliCar
TL;DR: Don't prefix or suffix your classes
문제
솔루션
문맥
일부 언어에는 데이터 유형, 추상 클래스 또는 인터페이스와 관련된 문화적 규칙이 있습니다.
이러한 이름은 따라가기 어려운 인지 번역으로 모델을 로드합니다.
KISS .
샘플 코드
잘못된
public interface IEngine
{
void Start();
}
public class ACar
{
}
public class ImplCar
{
}
public class CarImpl
{
}
오른쪽
public interface Engine
{
void Start();
}
public class Vehicle
{
}
public class Car
{
}
예외
C#에서는 인터페이스 이름에 "I"를 넣는 것이 일반적입니다. I가 없으면 인터페이스인지 클래스인지 구분할 수 없기 때문입니다.
이것은 언어 냄새입니다.
발각
[X] 자동
동의어 사전이 있으면 어색한 이름을 가리킬 수 있습니다.
태그
잘못된
public interface IEngine
{
void Start();
}
public class ACar
{
}
public class ImplCar
{
}
public class CarImpl
{
}
오른쪽
public interface Engine
{
void Start();
}
public class Vehicle
{
}
public class Car
{
}
예외
C#에서는 인터페이스 이름에 "I"를 넣는 것이 일반적입니다. I가 없으면 인터페이스인지 클래스인지 구분할 수 없기 때문입니다.
이것은 언어 냄새입니다.
발각
[X] 자동
동의어 사전이 있으면 어색한 이름을 가리킬 수 있습니다.
태그
[X] 자동
동의어 사전이 있으면 어색한 이름을 가리킬 수 있습니다.
태그
결론
모델에 실제 이름을 사용하십시오.
처지
코드 냄새 130 - AddressImpl
Maxi Contieri ・ 4월 18일 ・ 2분 읽기
#codenewbie
#tutorial
#webdev
#java
더 많은 정보
코드 냄새 130 - AddressImpl
Maxi Contieri ・ 4월 18일 ・ 2분 읽기
#codenewbie
#tutorial
#webdev
#java
더 많은 정보
학점
Unsplash에 있는 Tim Mossholder의 사진
Some people, when confronted with a problem, think “I know, I’ll use regular expressions.” Now they have two problems.
제이미 자위스키
소프트웨어 엔지니어링 좋은 인용구
Maxi Contieri ・ 12월 28일 '20 ・ 13분 읽기
#codenewbie
#programming
#quotes
#software
이 기사는 CodeSmell 시리즈의 일부입니다.
코드에서 냄새 나는 부분을 찾는 방법
Maxi Contieri ・ 2021년 5월 21일 ・ 7분 읽기
#codenewbie
#tutorial
#codequality
#beginners
Reference
이 문제에 관하여(Code Smell 141 - 엔진, 차량, ImpliCar), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/mcsee/code-smell-141-iengine-avehicle-implcar-58ch
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Some people, when confronted with a problem, think “I know, I’ll use regular expressions.” Now they have two problems.
소프트웨어 엔지니어링 좋은 인용구
Maxi Contieri ・ 12월 28일 '20 ・ 13분 읽기
#codenewbie
#programming
#quotes
#software
코드에서 냄새 나는 부분을 찾는 방법
Maxi Contieri ・ 2021년 5월 21일 ・ 7분 읽기
#codenewbie
#tutorial
#codequality
#beginners
Reference
이 문제에 관하여(Code Smell 141 - 엔진, 차량, ImpliCar), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mcsee/code-smell-141-iengine-avehicle-implcar-58ch텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)