Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
此图片中带下划线的句子中提到的问题:
我被要求在 UML2 的抽象类中添加具体的公共方法。我正在努力寻找解决方案,因为我没有找到任何与此相关的材料。我知道抽象类可以用斜体定义。但是如何在一个(n 抽象)类中显示一个具体的公共/抽象方法呢?
基本上,您遵循与以斜体显示的类相同的规则:以斜体显示抽象操作。
如您所见,named 操作以abstract斜体呈现,表示它的isAbstract属性设置为,true而具体操作 namedconcrete以普通字体显示(因此是具体的并isAbstract设置为false)。
abstract
isAbstract
true
concrete
false