資源描述:
《《類圖對象包圖》PPT課件》由會員上傳分享,免費在線閱讀,更多相關內容在教育資源-天天文庫。
1、第五章類圖、對象圖、包圖計算機科學學院董兆安內容提要類圖由類以及類之間的關系組成。類圖是所有面向對象建模方法的核心部分。類圖描述了系統(tǒng)的靜態(tài)結構。類可以表示程序設計中的一個類型。也可以表示現(xiàn)實世界的一類事物或概念。信息系統(tǒng)開發(fā)的各個階段都要使用UML中的類圖。在系統(tǒng)開發(fā)的不同階段,類圖表示了不同層次的抽象。概念層(Conceptual):在需求分析階段,類圖主要用于領域內的一些概念類的描述,形成概念模型;規(guī)格說明層:(Specification):在設計階段,類圖著重描述類與類之間的接口等外部特性,形成設計模型;實現(xiàn)層(Implementation):在實現(xiàn)階段,類圖主要用于描述類的在軟件
2、系統(tǒng)中的內部實現(xiàn)。?Page2Classifiers(類目、分類器)Aclassifierisamechanismthatdescribesstructuralandbehavioralfeatures.Classifiersincludeclasses,associations,interfaces,datatypes,signals,components,nodes,usecases,andsubsystems.?Page3類(Classes)Aclassisacollectionofthingsorconceptsthathavethesamecharacteristics.Each
3、ofthesethingsorconceptsiscalledanobject.類是具有相同特征(屬性)和行為(方法)的對象的集合。aclassdescribesagroupofobjectswith:similarproperties(attributes)commonbehavior(operation,method)commonrelationshipstootherobjectscommonmeaningclassdiagramsshowclasseswiththeirattributesandoperations,togetherwiththeassociationsbetwee
4、nclasses?Page4describingaclassThelevelofdetailyouchoosetoshowforyourclassesdependsonwhoisreadingthediagramsonwhichtheyappear.Forexample,astakeholderwho'sfocusedonthe"bigpicture"isprobablyinterestedonlyinthenamesoftheclasses,whileadeveloperworkingatamoredetailedlevelprobablywantstoseeafullsetofattr
5、ibutesandoperations.?Page5簡化表示(IconNotation)Somemodel'srepresentationscanbeswitchedbetweenIconNotationandClassNotation.?Page6類的名稱(Classnames)UML中的名稱是標識某個模型元素的字符串。簡單名(simplename):字母、數(shù)字和下劃線的序列,通常以字母開始。復合名(pathname):以分隔符分開的一個或者多個簡單名的組合序列。例如:java::awt::Rectangle;java::util::Date復合名稱中的最后一個一般指某個實體,如:類或者
6、用例。雖然UML具有非常寬松的命名規(guī)定,許多標點都可以使用。但是為了避免混亂,我們還是建議采用簡單名稱的命名約定,盡量使用字母、數(shù)字、下劃線構成字符串的命名方式。在分析和設計的不同階段,類的圖符可以使用恰當?shù)木喎绞?,省略一些細?jié),甚至屬性、方法兩個要素都可省略。但是類的名稱是三個要素中,必須具備的要素,不可以省略。?Page7屬性attributeThefullformofaUMLattributedeclarationisasfollows:[visibility]name[:type][multiplicity][=default-value][{property-string}]v
7、isibilityNametypemultiplicitydefault-valueproperty-string+(public),#(protected),-(private)e.g.CustomerName,DiscountRatee.g.Point,String,Date,etc.e.g.[0..1],[2..*]e.g.=(0,0),=nullchangeable(default),addOnly,frozen