데이터 구조 및 분석 ch_2_2 UML notation I
Jul 8, 2021
»
writing
KAIST 산업및시스템공학과 문일철_ 데이터 구조 및 분석 수업을 참고하여 작성하였습니다
ch_2_2 UML notation I
UML notation I
1. UML notation : Class and Instance - Abstract class : Person - Class : Custormer - Named instance : Park::Customer - Unnamed instance : Customer Ex) (Instance Name :: Class Name) Park::Customer ---------------------------- -Id : String #AccountNum : interger +Name : Stirng = hey +login() : void +requestWithdrawall() : Boolean 1) Visibility options + -> public # -> protected - -> private 2) Member variable, Attributes, property +-#(name):type = (default value) 3) Methods, memeber functions +-#(name)(arguments):(type)