开发者

Representing a C# Generic Method in a UML Class Diagram

开发者 https://www.devze.com 2022-12-16 20:53 出处:网络
I have the following interface: public interface IRegisterable { T Register<T>(string username, string passw) where T : User, ICanLogin, new();

I have the following interface:

public interface IRegisterable
{
   T Register<T>(string username, string passw) where T : User, ICanLogin, new();
}

User is an abstract class, and ICanLogin is another interface.

开发者_如何学Go

Now, I want to represent the above interface with its method in a UML Class Diagram, in Visio.

How can I represent the above generic method with its constraints in a Class Diagram ?


A generic class is a Template class in UML see What is the correct way to represent template classes with UML?

So can't you use thye Parameterized Class in Visio http://etutorials.org/Programming/UML/Chapter+6.+Class+Diagrams+Advanced+Concepts/Parameterized+Class/


UML does not support type parametric methods directly.

About the closest you'll get is to define a nested class which has the type constraints with a stereotype which you will interpret as meaning it's a type parameter, and define the Register operation in terms of that.

+---------------------------------------------------+
|                   «interface»                     |
|                  IRegisterable                    |
+---------------------------------------------------+
| + Register (string username, string passw) : T    |
+---------------------------------------------------+

    +---------------+           +---------------+
    |  «abstract»   |           |  «interface»  |
    |     User      |           |   ICanLogin   |
    +---------------+           +---------------+
            .                           .
           /_\                         /_\
            |                           .
            +-----------+   .............
                        |   .
                +-------------------+              
                |  «typeParameter»  |
                | IRegisterable::T  |
                +-------------------+           
                | + new()           |
                +-------------------+           

    note: T is a nested class within IRegisterable


UML DOES support parametric types (other things can be parametrized as well, and things other than types can be used as parameters as well).

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号