Interface Class relationship in visual paradigm

梦想与她 提交于 2019-12-14 03:54:58

问题


I have been working on this for quite few time but could not find a way to denote the relationship between a class and an interface that is implemented by class in an UML diagram. Can someone help me in the above problem? My interface and class has following relationship

interface foo

{

    void a();
    void b();

}

class goo : foo

{

    public override void a()
    {

        //Code goes here
    }
}

Can you please tell me what to use in visual paradigm to show there relationship?


回答1:


It is shown like inheritance. This article may help you UML basics



来源:https://stackoverflow.com/questions/10442819/interface-class-relationship-in-visual-paradigm

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!