资源描述:
《《类图对象包图》PPT课件》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、第五章类图、对象图、包图计算机科学学院董兆安内容提要类图由类以及类之间的关系组成。类图是所有面向对象建模方法的核心部分。类图描述了系统的静态结构。类可以表示程序设计中的一个类型。也可以表示现实世界的一类事物或概念。信息系统开发的各个阶段都要使用UML中的类图。在系统开发的不同阶段,类图表示了不同层次的抽象。概念层(Conceptual):在需求分析阶段,类图主要用于领域内的一些概念类的描述,形成概念模型;规格说明层:(Specification):在设计阶段,类图着重描述类与类之间的接口等外部特性,形成设计模型;实现层(Implementation):在实现阶段,类图主要用于描述类的在软件
2、系统中的内部实现。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、nclassesPage4describingaclassThelevelofdetailyouchoosetoshowforyourclassesdependsonwhoisreadingthediagramsonwhichtheyappear.Forexample,astakeholderwho'sfocusedonthe"bigpicture"isprobablyinterestedonlyinthenamesoftheclasses,whileadeveloperworkingatamoredetailedlevelprobablywantstoseeafullsetofattr
5、ibutesandoperations.Page5简化表示(IconNotation)Somemodel'srepresentationscanbeswitchedbetweenIconNotationandClassNotation.Page6类的名称(Classnames)UML中的名称是标识某个模型元素的字符串。简单名(simplename):字母、数字和下划线的序列,通常以字母开始。复合名(pathname):以分隔符分开的一个或者多个简单名的组合序列。例如:java::awt::Rectangle;java::util::Date复合名称中的最后一个一般指某个实体,如:类或者
6、用例。虽然UML具有非常宽松的命名规定,许多标点都可以使用。但是为了避免混乱,我们还是建议采用简单名称的命名约定,尽量使用字母、数字、下划线构成字符串的命名方式。在分析和设计的不同阶段,类的图符可以使用恰当的精简方式,省略一些细节,甚至属性、方法两个要素都可省略。但是类的名称是三个要素中,必须具备的要素,不可以省略。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