코드로 UML 클래스 연결 설명
3965 단어 uml
관계 및 종속성
이렇게 TS코드로 변환 가능
class Address {}
class Food {}
class People {
// for this line People has relation with Address
address: Address
heart: Heart
// for this line People has dependency with Food
eat(food: Food) {}
}
집계 및 구성
이렇게 TS코드로 변환 가능
class Heart {}
class People {
heart: Heart
constructor () {
// for this line People has composition with Heart
this.heart = new Heart()
}
}
class PeopleGroup {
peoples: People[]
// for this line PeopleGroup has aggregation with (alot of) People
constructor (peoples: People[]) {
this.peoples = peoples
}
}
일반화 및 실현
이렇게 TS코드로 변환 가능
class Animal {}
interface Eatting {
eat(food: Food): void
}
class People
// for this line People is extends (generalization) from Animal
extends Animal
// for this line People is implement (realization) from Eatting
implements Eatting {
// ...
}
Reference
이 문제에 관하여(코드로 UML 클래스 연결 설명), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ilumin/uml-class-association-explain-with-code-29fm텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)