我有以下界面:
public interface IRegisterable
{
T Register<T>(string username, string passw) where T : User, ICanLogin, new();
}
User
是一个抽象类,ICanLogin
是另一个接口。
现在,我想在Visio的UML类图中用它的方法表示上面的接口。
如何在类图中用约束表示上面的泛型方法?
答案 0 :(得分:5)
泛型类是UML中的Template类 见What is the correct way to represent template classes with UML?
所以你不能在Visio http://etutorials.org/Programming/UML/Chapter+6.+Class+Diagrams+Advanced+Concepts/Parameterized+Class/
中使用参数化类答案 1 :(得分:3)
UML不直接支持类型参数化方法。
关于你最接近的是定义一个嵌套类,它具有一个带有构造型的类型约束,你将其解释为它是一个类型参数,并根据它定义Register
操作。 / p>
+---------------------------------------------------+
| «interface» |
| IRegisterable |
+---------------------------------------------------+
| + Register (string username, string passw) : T |
+---------------------------------------------------+
+---------------+ +---------------+
| «abstract» | | «interface» |
| User | | ICanLogin |
+---------------+ +---------------+
. .
/_\ /_\
| .
+-----------+ .............
| .
+-------------------+
| «typeParameter» |
| IRegisterable::T |
+-------------------+
| + new() |
+-------------------+
note: T is a nested class within IRegisterable
答案 2 :(得分:1)
UML DOES 支持参数类型(其他东西也可以参数化,类型以外的东西也可以用作参数)。