Skip to content

Commit

Permalink
Merge pull request #1889 from time-emit/master
Browse files Browse the repository at this point in the history
#4 #5 #1195 实验四&实验五
  • Loading branch information
zengsn authored Mar 28, 2020
2 parents 406839d + bb89bb4 commit 62541bd
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 5 deletions.
Binary file modified students/1714080902616/Lab3_ActivityDiagram2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added students/1714080902616/Lab4&5_ClassDiagram1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions students/1714080902616/lab2.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@
-|:-|-
用例名称 | 评论帖子 |
前置条件 | 进入帖子浏览界面 | *可选*
后置条件 | 帖子评论成功 | *可选*
后置条件 | 帖子浏览界面 | *可选*
基本流程 | 1.摄影爱好者点击评论链接 |*用例执行成功的步骤*
~| 2.系统显示评论编辑界面 |
~| 2.系统检查符合权限和等级要求,显示评论编辑界面 |
~| 3.摄影爱好者输入内容,点击发送 |
~| 4.系统检查评论符合要求,保存评论信息,提示“评论成功” |
扩展流程 | 4.1系统检查发现评论内容为空,提示“评论内容为空” |*用例执行失败*
扩展流程 | 2.1系统检查发现无权限,提示“已被禁言,无法评论” |*用例执行失败*
~| 2.2系统检查发现不符合等级要求,提示“等级过低,暂时无法评论” |
~| 4.1系统检查发现评论内容为空,提示“评论内容为空” |
~| 4.2系统检查发现帖子已被删除,提示“帖子不存在” |
~| 4.3系统检查发现不符合等级要求,提示“等级过低,暂时无法评论” |
~| 4.4系统检查发现被禁言,提示“已被禁言,无法评论” |
46 changes: 46 additions & 0 deletions students/1714080902616/lab4&5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# 实验四:类建模 & 实验五: 高级类建模

## 一、实验目标

### 1. 掌握类建模方法;
### 2. 了解MVC或你熟悉的设计模式;
### 3. 掌握类图的画法。(Class Diagram)

## 二、实验内容

### 1. 学习类建模
### 2. 根据用例规约找出类对象,并且对类建模;

## 三、 实验步骤

### 1.学习了解类建模、MVC模式
### 2.根据MVC模式和用例规约,确定各层包含哪些类
### 3.确定类之间的关系
### 4.使用StarUML画出类图

## 四、实验结果

![浏览图库类图](./Lab4&5_ClassDiagram1.jpg)

图1:浏览图库类图

![评论帖子类图](./Lab4&5_ClassDiagram2.jpg)

图2:评论帖子类图

## 五、实验总结
### 1.MVC模式:
- Model层:表示数据和业务规则
- View层:与用户交互的界面
- Controller层:负责Model和View层之间的通信
### 2.类
一般包含3个组成部分
- 类名
- 属性(attributes)
- 方法
### 3.类的关系
- 依赖
- 关联
- 聚合
- 组合
- 继承

0 comments on commit 62541bd

Please sign in to comment.