코드 냄새 60 - 글로벌 클래스
요약: 클래스를 글로벌 액세스 지점으로 사용하지 마십시오.
문제
솔루션
샘플 코드
잘못된
<?
final class StringUtilHelper {
static function reformatYYYYDDMMtoYYYYMMDD($date) {
}
}
class Singleton {
}
final class DatabaseAccessor extends Singleton {
}
오른쪽
<?
namespace Date;
final class DateFormatter {
function reformatYYYYDDMMtoYYYYMMDD(Date $date) {
}
//function is not static since class single responsibility is to create instances and not be a library of utils
}
namespace OracleDatabase;
class DatabaseAccessor {
//Database is not a singleton and it is namespace scoped
}
발각
거의 모든 린터를 사용하거나 잘못된 클래스 참조를 검색하는 종속성 규칙을 만들 수 있습니다.
태그
<?
final class StringUtilHelper {
static function reformatYYYYDDMMtoYYYYMMDD($date) {
}
}
class Singleton {
}
final class DatabaseAccessor extends Singleton {
}
<?
namespace Date;
final class DateFormatter {
function reformatYYYYDDMMtoYYYYMMDD(Date $date) {
}
//function is not static since class single responsibility is to create instances and not be a library of utils
}
namespace OracleDatabase;
class DatabaseAccessor {
//Database is not a singleton and it is namespace scoped
}
거의 모든 린터를 사용하거나 잘못된 클래스 참조를 검색하는 종속성 규칙을 만들 수 있습니다.
태그
결론
우리는 클래스를 작은 도메인으로 제한하고 외관만 외부에 노출해야 합니다. 이렇게 하면 커플링이 크게 줄어듭니다.
처지
코드 냄새 18 — 정적 함수
Maxi Contieri ・ 2020년 11월 6일 ・ 2분 읽기
#codenewbie
#tutorial
#development
#coding
코드 냄새 17 - 전역 함수
Maxi Contieri ・ 11월 5일 '20 ・ 1분 읽기
#codenewbie
#development
#tutorial
더 많은 정보
싱글톤: 모든 악의 근원
Maxi Contieri ・ 11월 17 '20 ・ 9분 읽기
#oop
#tutorial
#codenewbie
#programming
결합: 유일한 소프트웨어 설계 문제
Maxi Contieri ・ 2021년 2월 6일 ・ 5분 읽기
#webdev
#programming
#oop
#tutorial
학점
사진 제공: Alfons Morales on Unsplash
Write shy code — modules that don't reveal anything unnecessary to other modules and that don't rely on other modules' implementations.
데이브 토마스
소프트웨어 엔지니어링 좋은 인용구
Maxi Contieri ・ 12월 28일 '20 ・ 13분 읽기
#codenewbie
#programming
#quotes
#software
이 기사는 CodeSmell 시리즈의 일부입니다.
코드에서 냄새 나는 부분을 찾는 방법
Maxi Contieri ・ 2021년 5월 21일 ・ 4분 읽기
#codenewbie
#tutorial
#codequality
#beginners
Reference
이 문제에 관하여(코드 냄새 60 - 글로벌 클래스), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/mcsee/code-smell-60-global-classes-3o9m
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
코드 냄새 18 — 정적 함수
Maxi Contieri ・ 2020년 11월 6일 ・ 2분 읽기
#codenewbie
#tutorial
#development
#coding
코드 냄새 17 - 전역 함수
Maxi Contieri ・ 11월 5일 '20 ・ 1분 읽기
#codenewbie
#development
#tutorial
더 많은 정보
싱글톤: 모든 악의 근원
Maxi Contieri ・ 11월 17 '20 ・ 9분 읽기
#oop
#tutorial
#codenewbie
#programming
결합: 유일한 소프트웨어 설계 문제
Maxi Contieri ・ 2021년 2월 6일 ・ 5분 읽기
#webdev
#programming
#oop
#tutorial
학점
사진 제공: Alfons Morales on Unsplash
Write shy code — modules that don't reveal anything unnecessary to other modules and that don't rely on other modules' implementations.
데이브 토마스
소프트웨어 엔지니어링 좋은 인용구
Maxi Contieri ・ 12월 28일 '20 ・ 13분 읽기
#codenewbie
#programming
#quotes
#software
이 기사는 CodeSmell 시리즈의 일부입니다.
코드에서 냄새 나는 부분을 찾는 방법
Maxi Contieri ・ 2021년 5월 21일 ・ 4분 읽기
#codenewbie
#tutorial
#codequality
#beginners
Reference
이 문제에 관하여(코드 냄새 60 - 글로벌 클래스), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/mcsee/code-smell-60-global-classes-3o9m
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
싱글톤: 모든 악의 근원
Maxi Contieri ・ 11월 17 '20 ・ 9분 읽기
#oop
#tutorial
#codenewbie
#programming
결합: 유일한 소프트웨어 설계 문제
Maxi Contieri ・ 2021년 2월 6일 ・ 5분 읽기
#webdev
#programming
#oop
#tutorial
사진 제공: Alfons Morales on Unsplash
Write shy code — modules that don't reveal anything unnecessary to other modules and that don't rely on other modules' implementations.
데이브 토마스
소프트웨어 엔지니어링 좋은 인용구
Maxi Contieri ・ 12월 28일 '20 ・ 13분 읽기
#codenewbie
#programming
#quotes
#software
이 기사는 CodeSmell 시리즈의 일부입니다.
코드에서 냄새 나는 부분을 찾는 방법
Maxi Contieri ・ 2021년 5월 21일 ・ 4분 읽기
#codenewbie
#tutorial
#codequality
#beginners
Reference
이 문제에 관하여(코드 냄새 60 - 글로벌 클래스), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mcsee/code-smell-60-global-classes-3o9m텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)