- 1、本文档共65页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
IC-Modeling with UML知识讲稿.ppt
* Passenger PurchaseSingleTicket PurchaseMultiCard NoChange extend Cancel extend include CollectMoney include include Relationships * Class Diagram Class diagrams represent the structure of the system. Class diagrams are used during requirements analysis to model problem domain concepts during system design to model subsystems and interfaces during object design to model classes. * A Class Diagram Enumeration getZones() Price getPrice(Zone) TariffSchedule * * Trip zone:Zone price:Price * Class A class represent a concept. A class encapsulates state (attributes) behavior (operations). Each attribute has a type. Each operation has a signature. The class name is the only mandatory information. * A Class zone2price getZones() getPrice() TariffSchedule Table zone2price Enumeration getZones() Price getPrice(Zone) TariffSchedule Name Attributes Operations Signature * Instance An instance represents a phenomenon. The name of an instance is underlined and can contain the class of the instance. The attributes are represented with their values. * An Instance zone2price = { {‘1’, .20},{‘2’, .40}, {‘3’, .60}} tariff_1974:TarifSchedule * Actor, Class, Instance Actor: An entity outside the system to be modeled, interacting with the system (“Pilot”) Class: An abstraction modeling an entity in the problem domain, inside the system to be modeled (“Cockpit”) Object: A specific instance of a class (“Joe, the inspector”). * Association Associations denote relationships between classes. The multiplicity of an association end denotes how many objects the source object can legitimately reference. * An Association Enumeration getZones() Price getPrice(Zone) TarifSchedule * pricezone TripLeg * * Associations 1-to-1 association 1-to-many association * draw() Polygon x:Integer y:Integer Point 1 Has-capital name:String Country name:String City 1 1 * Aggregation An aggregation is a special case of association denoting a “consists of” hierarchy. The aggregate is the parent class, the
文档评论(0)