我是靠谱客的博主 整齐心情,最近开发中收集的这篇文章主要介绍Graphviz样例之UML图,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Graphviz是一个开源软件,有源码,支持不同平台。linux系统下使用XDot程序显示dot格式的文件。

Graphviz显示图形时,可以选择不同的策略进行布局和布线显示图形。

Graphviz的官方网站(点击进入)Graphviz | Graphviz - Graph Visualization Software。

Web版的Graphviz网站(点击进入)Webgraphviz


UML图(两种)

代码一如下:

digraph UML {
     
    fontname = "Courier New"
    fontsize = 10
     
    node [ fontname = "Courier New", fontsize = 10, shape = "record" ];
    edge [ fontname = "Courier New", fontsize = 10 ];
     
    Animal [ label = "{Animal |+ name : Stringl+ age : intl|+ die() : voidl}" ];
    
       subgraph clusterAnimalImpl{
           bgcolor="yellow"
           Dog [ label = "{Dog||+ bark() : voidl}" ];
           Cat [ label = "{Cat||+ meow() : voidl}" ];
       };
    
   edge [ arrowhead = "empty" ];
    
   Dog->Animal;
   Cat->Animal;
   Dog->Cat [arrowhead="none", label="0..*"];
}

图样一如下:



代码二如下:

digraph UML2 {
	nodesep=0.8;
	node [ fontname="Bitstream Vera Sans", fontsize=8, shape="record" ]
	edge [
		fontsize=8
		arrowhead="empty"
	]

	Animal [
		label = "{Animal|+ name: Stringl+ age: Integerl|+ die(): voidl}"
	]

	subgraph clusterAnimalImpl {
		label="Package animal.impl"
		Dog [
			label = "{Dog||+ bark(): voidl}"
		]

		Cat [
			label = "{Cat||+ meow(): voidl}"
		]
		{ rank=same; Dog; Cat }
	}

	Dog -> Animal
	Cat -> Animal

	edge [
		arrowhead = "none"
		headlabel = "0..*"
		taillabel = "0..*"
	]
	Dog -> Cat
}

图样二如下:


转载于:https://www.cnblogs.com/tigerisland/p/7564335.html

最后

以上就是整齐心情为你收集整理的Graphviz样例之UML图的全部内容,希望文章能够帮你解决Graphviz样例之UML图所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(58)

评论列表共有 0 条评论

立即
投稿
返回
顶部