问题
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