惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Help Net Security
Help Net Security
S
SegmentFault 最新的问题
T
The Blog of Author Tim Ferriss
J
Java Code Geeks
博客园 - 三生石上(FineUI控件)
月光博客
月光博客
C
Check Point Blog
M
MIT News - Artificial intelligence
GbyAI
GbyAI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
U
Unit 42
D
Docker
G
Google Developers Blog
云风的 BLOG
云风的 BLOG
H
Help Net Security
D
DataBreaches.Net
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog
Cloudbric
Cloudbric
Blog — PlanetScale
Blog — PlanetScale
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
T
Troy Hunt's Blog
N
News | PayPal Newsroom
V2EX - 技术
V2EX - 技术
H
Heimdal Security Blog
S
Security @ Cisco Blogs
V
Visual Studio Blog
The Last Watchdog
The Last Watchdog
博客园 - Franky
大猫的无限游戏
大猫的无限游戏
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Webroot Blog
Webroot Blog
Security Archives - TechRepublic
Security Archives - TechRepublic
C
Cyber Attacks, Cyber Crime and Cyber Security
Last Week in AI
Last Week in AI
爱范儿
爱范儿
博客园 - 聂微东
S
Securelist
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
Cisco Talos Blog
Cisco Talos Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
C
CXSECURITY Database RSS Feed - CXSecurity.com
V
Vulnerabilities – Threatpost
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
O
OpenAI News
Apple Machine Learning Research
Apple Machine Learning Research

博客园 - 王鹏翊

引用:使用 IntelliTrace 调试应用程序 zz 数据库范式 SOA7阶段成熟度和路线图 zz:wikipedia中对Zachman_Framework的解释 zz:TOGAF和SOA 转:应用jBPM4解决中国特色的流程需求 Shell Extension的一些学习资源 转:Understanding Classic COM Interoperability With .NET Applications 架构框架TOGAF发布9.0版本 wikipedia中关于知识、本体的解释 转:知识管理概念综述(二) 转:知识管理概念综述(一) 线程同步Demo:SynchronizationContext和EventWaitHandle:异步和同步 FW: 采用CAS原理构建单点登录 转:声明式的WCF安全模型 转:Infoworld发布2009年度开源软件大奖 转:(C#)Windows Shell 外壳编程系列1 - 基础,浏览一个文件夹 转:Windows外壳名字空间的浏览 用例、用户故事和特性的区别
彩色UML(color uml)
王鹏翊 · 2009-09-14 · via 博客园 - 王鹏翊

这并不是一个新的方法,但我是在2009敏捷大会上第一次接触到的,挺有意思的方法。

详细说明:http://en.wikipedia.org/wiki/UML_colors

在这里记录一些体会:
1、moment-interval:描述了系统的行为,比如一次交易,一个入库/出库行为,属于一个场景中最重要的类,用最鲜明的颜色粉红代表;
     做场景分析的起点,优先应该找到的类。
     这是这种方法和其他uml建模最大的区别-针对行为建模,很多时候行为往往被拆解成多个部分放在不同的类中;
2、role:第二重要的类,用第二醒目的颜色黄色代表。我理解的是人、事、物和系统行为的关系,比如
    (1)人在行为中的角色、身份、作用,
    (2)或者行为涉及到的事、物的改变。
    前者比较容易理解,比如在一个交易中人的身份;后者比较难以理解,比如交易涉及的货物的情况(购买的数量,单价,购买时间等)构成一个类;
3、thing:绿色,传统意义的类;
4、description:蓝色,thing的描述,有点类似matin fower在分析模式中提到的知识级的类;

这种方法的价值在于:
1、明确了场景分析的起点;
2、粉红类一般不会和绿色类直接关联,中间往往有一个黄色类。建模时如果发现红-绿直接关联,需要思考是否丢概念了;
3、直观,简单,有效