코드 냄새 11 - 코드 재사용을 위한 하위 분류
8382 단어 tutorialoopcodenewbie
요약: 상속보다 구성을 선호합니다. 언제나. 기간.
문제
솔루션
예외
샘플 코드
잘못된
public class Rectangle {
int length;
int width;
public Rectangle(int length, int width){
length = length;
width = width;
}
public int area(){
return length * width;
}
}
public class Square extends Rectangle {
public Square(int size){
super(size, size);
}
public int area(){
return length * length;
}
}
public class Box extends Rectangle{
}
오른쪽
abstract public class Shape{
abstract public int area();
}
public final class Rectangle extends Shape {
int length;
int width;
public Rectangle(int length, int width){
length = length;
width = width;
}
public int area(){
return length * width;
}
}
public final class Square extends Shape {
int size;
public Square(int size){
size = size;
}
public int area(){
return size * size;
}
}
public final class Box {
Square shape;
public Box(int size){
shape = new Square(size);
}
public int area(){
return shape.area();
}
}
발각
public class Rectangle {
int length;
int width;
public Rectangle(int length, int width){
length = length;
width = width;
}
public int area(){
return length * width;
}
}
public class Square extends Rectangle {
public Square(int size){
super(size, size);
}
public int area(){
return length * length;
}
}
public class Box extends Rectangle{
}
abstract public class Shape{
abstract public int area();
}
public final class Rectangle extends Shape {
int length;
int width;
public Rectangle(int length, int width){
length = length;
width = width;
}
public int area(){
return length * width;
}
}
public final class Square extends Shape {
int size;
public Square(int size){
size = size;
}
public int area(){
return size * size;
}
}
public final class Box {
Square shape;
public Box(int size){
shape = new Square(size);
}
public int area(){
return shape.area();
}
}
태그
결론
레거시 시스템에서는 Deep Hierarchies 및 메서드 재정의가 매우 일반적이므로 이를 리팩터링하고 구현적인 이유가 아닌 본질적인 이유로 하위 클래스를 분류해야 합니다.
처지
코드 냄새 58 - 요요 문제
Maxi Contieri ・ 2021년 1월 24일 ・ 2분 읽기
#codenewbie
#codesmell
#tutorial
#webdev
더 많은 정보
코드 냄새 58 - 요요 문제
Maxi Contieri ・ 2021년 1월 24일 ・ 2분 읽기
#codenewbie
#codesmell
#tutorial
#webdev
더 많은 정보
학점
사진 제공: Brandon Green on Unsplash
이 기사는 CodeSmell 시리즈의 일부입니다.
코드에서 냄새 나는 부분을 찾는 방법
Maxi Contieri ・ 2021년 5월 21일 ・ 4분 읽기
#codenewbie
#tutorial
#codequality
#beginners
최종 업데이트: 2021년 6월 15일
Reference
이 문제에 관하여(코드 냄새 11 - 코드 재사용을 위한 하위 분류), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/mcsee/code-smell-11-subclassification-for-code-reuse-1136
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
코드에서 냄새 나는 부분을 찾는 방법
Maxi Contieri ・ 2021년 5월 21일 ・ 4분 읽기
#codenewbie
#tutorial
#codequality
#beginners
Reference
이 문제에 관하여(코드 냄새 11 - 코드 재사용을 위한 하위 분류), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mcsee/code-smell-11-subclassification-for-code-reuse-1136텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)