阅读说明:本节主要是介绍UML实战应用,给大家分析Java语言中IO流类结构,Android开发中View结构,iOS开发中UIView结构以及Retrofit设计在UML中如何应用,后面还会陆陆续续的更新更多详细的UML开发应用学习文章,直接对接我们当下的开发。
注意事项:UML工具是StarUML,我用的是Mac版本,大家可以下载自己电脑对应的版本。
下载地址:http://staruml.io/download
内容一:UML建模-Android-Java语言?
案例一:在Java中IO流类结构?
实现关系:InputStream implements Closeable
实现关系:OutputStream implements Closeable
继承关系:FileInputStream extends InputStream
继承关系:FileOutputStream extends OutputStream
……
UML类图如下:
案例二:Android开发中我们每天都在用的View和ViewGroup层次结构?
实现关系:View implements Drawable.Callback
实现关系:View implements KeyEvent.Callback
继承关系:ViewGroup extends View
实现关系:ViewGroup implements ViewParent
继承关系:LinearLayout extends ViewGroup
继承关系:TextView extends View
继承关系:Button extends TextView
……
UML类图如下:
内容二:UML建模-iOS平台-Swift语言?
案例:在iOS项目开发中UIView类结构?
继承关系:class UIScrollView : UIView
实现关系:class UITableView : NSCoding
继承关系:class UITableView : UIScrollView
继承关系:class UIControl : UIView
继承关系:class UIButton : UIControl
……
UML类图如下:
内容三:UML建模-Retrofit数据解析模块?
案例:Retrofit框架设计中数据解析模块类结构图?
Gson模块和XML模块
继承关系:GsonConverterFactory extends Converter.Factory
实现关系:GsonRequestBodyConverter implements Converter
实现关系:GsonResponseBodyConverter implements Converter
继承关系:SimpleXmlConverterFactory extends Converter.Factory
实现关系:SimpleXmlRequestBodyConverter implements Converter
实现关系:SimpleXmlResponseBodyConverter implements Converter
注意:在这里是一个工厂模式设计,工厂模式设计后面会有文章专门进行分析,在这里只是给大家绘制类图结构。
UML类图如下:
网友评论