往届期末绘图的题目例如以下所看到的:

Read the providing materials carefully, and then do tasks.

2.1: Use Case Diagram

Develop a detailed use case model for the application “X单词”.
The model should take auser’s(rather than system’s) perspective.Define
use cases for handling user’s input and actions, butdonot be specific about system’s computationsor
web page creation activities.

Show dependencies between use cases. Specify «include»and «extend»relationshipsand
anyimportant constraints.

2.2: UML Activity Diagram.

Develop a UML activity model for the use case“背单词”of the application. The model visualizesthe interactions between a user and the application
to fill a user’s goals. Pay attention on useractions,do
notapply swim lane activity diagram.

2.3: UML State Diagram.

Develop a UML state model for the control process of the use case“背单词”. The modelvisualizes the relationship between external events and business
scenes.

2.4: Domain Model.

Develop a domain model of the application(注意:仅须要从设置学习内容,背单词用例中获取领域对象).
The model should take business perspectives.The conceptual model
should showattributes in classes and relationships between classes. All associations should have multiplicitiescarefully defined. There is no need to specify attribute types and operations (methods).

2.5 System Sequence Diagram & Post-condition

According to the main scenario of the use case“背单词”, Develop a SSD model to identify somesystem operations for the system. And then give the
post-condition of the operation“startLearning()”(即開始学习操作)

2.6 Package Diagram

For OO architecture design, we always use MVC pattern to build layer architecture. Develop apackage diagram illustrates these layers. Please show the dependencies between packages, andthen put software classes of the main scenario of the use case“背单词”into
these packages.

2.7 UML Sequence Diagram

According to BCE pattern, develop a interaction model with sequence diagram for the mainscenario of the use case“背单词”.

2.8 UML Design Class Diagram (DCD)

Develop a DCD including C&E elements onlyaccording to results of
2.7 and 2.4

附加题(10 marks)

2.9 UML Deployment Diagram

The architect(架构师) studied the use case“打卡”,
he want a DB server to hold user profiles(用户注冊信息)and achievements(成就),
a Web server to provide some services for clients, Mobilephones with android operation system as client hold MVC component and Proxy servicescomponent. A client communicates with the web server using HTTP and JSON protocol.

Develop a deployment model to illustrate the architect’s design. Stereotype must be used toclassify physical
nodes.

背单词应用的完整文档请点击链接下载  http://download.csdn.net/detail/luoshengkim/8841257

然后题目答案我也打包了,点击链接下载:http://download.csdn.net/detail/luoshengkim/8841305

最后,我来总结一下在老师上课讲课的时候提到过的。UML绘图中须要注意的一些细节事项吧:

1)用例图的圆圈里要用动词

2)活动图:提到用例的时候不用画多泳道,说业务的时候才会出现并行(业务可画多泳道)

3)需求时期最须要 领域模型(数据库的设计须要他)

4)设计时须要交互图

5)类图中须要注意的3个差别:a)泛化&继承   b)操作和方法   c)组合和聚合

6)在软件设计方法中。泛化=继承

7)在非软件设计方式中,泛化 !=继承

8)用例图:遵循boss准则。关注业务过程。单步操作。不出现名词。不要太多分层(include不要超过4层)

9)活动图:不要太仔细,画清楚分支选择(主要的操作。子用例)

10)状态图:[]表示条件,/表示系统,一定要有起点,不一定有终点,单词解释是复杂对象,没描写叙述类一定会扣分

11)部署图三要素:节点,部件,关联

12)系统顺序图。不要有ifelse。消息不超过五条

以上的细节知识点都是我上课记录下来的,当然还有非常多细节须要注意。总之。UML绘图还是要慢慢来,前后相应一定要一致。画的多了,自然就通了。最后,希望期末考试能给力一些~Fighting!

最后再来说一下对这整个学期甚至这整个半年的感想和总结吧,UML这门课还真是挺奇妙的。学期一開始的时候认为这门课非常枯燥,可是越到后面越喜欢这门课,也越发的意识到系统分析与设计的重要性。

我认为最基本的原因还是理论+实践的结合吧,这一点潘老师做得非常好,我们在实践中学习,小组做project过程中同一时候在画UML图,在实战的过程中我们发现了非常多的不足,也因此做了非常多的改进,也学到了不少。UML在工程领域还真是挺重要的一个东西。

UML期末绘图及细节总结的更多相关文章

  1. UML和绘图工具Visio介绍

    UML系列01之 UML和绘图工具Visio介绍 概要 UML,全称是Unified Modeling Language,中文是"统一建模语言".通俗点说,UML是一种创建模型的语 ...

  2. UML系列01之 UML和绘图工具Visio介绍

    概要 UML,全称是Unified Modeling Language,中文是"统一建模语言".通俗点说,UML是一种创建模型的语言.UML是在开发阶段,说明,可视化,构建和书写一 ...

  3. Runway for Mac(UML 流程图绘图工具)破解版安装

    1.软件简介    Runway 是 macOS 系统上一款强大实用的软件开发工具,Runway for Mac 是一个界面简单功能强大的UML设计师.此外,Runway for Mac 带给你所有你 ...

  4. UML期末复习题——2.5:System Sequence Diagram & Post-condition

    第五题:系统顺序图 重要概念: 1.对象: 对象是特定行为与属性的集合. 对象的表示方式有三种: a.包括对象名和类名 b.只有类名. c.只有对象名 2.消息表示形式: 消息用于描述对象间交互的方式 ...

  5. canvas绘图动画细节

    1.canvas动画不能像操作DOM那样修改一个元素的top和left值就能移动.canvas要移动一个元素需要重绘,在重绘的时候修改相应的值.将绘制的图形封装成一个函数,这样才方便重绘.2.在重绘的 ...

  6. UML期末复习题——2.9:UML Deployment Diagram

    附加题:部署图 重要概念: 1. 部署图 部署图表示的是,如何将具体的软件制品(例如可执行文件)分配到计算节点(具有处理服务的某种事物)上.部署图表示了软件元素在物理架构上的部署,以及物理元素之间的通 ...

  7. UML期末复习题——2.8:UML Design Class Diagram(DCD)

    第八题:设计类图 重要概念: 1. 类图(Class Diagram): 类图是面向对象系统建模中最常用和最重要的图,是定义其它图的基础.类图主要是用来显示系统中的类.接口以及它们之间的静态结构和关系 ...

  8. UML期末复习题——2.7:UML Sequence Diagram

    第七题:顺序图 重要概念: 1. 顺序图的主要介绍,在之前对第5题“系统顺序图”的解析讲解里已经很详细了,在这里只是对部分不全面的内容进行补充. 第五题:系统顺序图&后置条件 http://w ...

  9. UML期末复习题——2.6:Package Diagram

    第六题 包图 重要概念: 1.包图(package Diagram) 由若干个包以及包之间的关系组成.包是一种分组机制,其将一些相关的类集合为一个包,形成高内聚,低耦合的类集合,可以说,一个包相当于一 ...

随机推荐

  1. win10查看系统启动项,并且禁用

    打开任务管理器,有一个叫做start up的选项卡,里面的东西就是启动项. 右键选中需要disable的,然后禁用.

  2. [专辑] 也晒晒我的RBAC系统 ——行一山人的博客

    也晒晒我的RBAC系统(一):概述 也晒晒我的RBAC系统(二):系统实现原理简介 也晒晒我的RBAC系统(三):后台管理程序源码及使用演示 也晒晒我的RBAC系统(四):框架源代码(超值奉献,请勿拍 ...

  3. [Pulgin] 利用swfupload实现java文件批量上传

    URL:http://blog.csdn.net/xuweilinjijis/article/details/8876305 之前在网上找过很多相关资料,很多所谓的批量上传都是忽悠人的,真正的批量上传 ...

  4. winFrom线程

    方法--->委托--->BeginInvoke用指定的参数异步执行委托 委托就是我想做什么,而你可以作什么,我就让你去做.

  5. 使用新的CSS类型对象模型

    el.attributeStyleMap.set('padding', CSS.px(42)); const padding = el.attributeStyleMap.get('padding') ...

  6. css 画三角形

    <div class='triangle-rihgt'></div> <div class='triangle-top'></div> <div ...

  7. Linux学习笔记(Redhat)

    一.开始 linux平台上的开发 vi.gcc.gdb.make.jdk.tomcat.mysql. linux基本操作 c语言功底<c专家编程>和java语言 学习unix高级编程 &l ...

  8. Struts2学习笔记 - Part.01

    1.关于Struts2中的struts.xml文件中action设置 <!-- 它是一个通用action,此处的*表明它可以处理任意的请求--> <action name=" ...

  9. 三维重建:深度相机方案对比-KinectFusion的基本原理(尺度)

    算法原理请参考此文:  kinect fusion 3D重建基本算法  http://log.csdn.net/xiaohu50/article/details/51592503 三维重建为三维空间实 ...

  10. MFC多标签页对话框

    原文链接(有修改):http://blog.sina.com.cn/s/blog_6a1cdb3f0101llcw.html 1.新建一个MFC工程 取名PageSheet,选择Dialog base ...