class diagram
-
Class DiagramModeling 2019. 8. 25. 11:53
1. Overview A class diagram in the Unified Modeling Language(UML) is a type of static structure diagram that describes the structure of a system by showing the system's classes, their attributes, operations(or methods), and the relationships among objects. 2. Class Notation public class Temperature { private int current; private int desired = 70; public int getCurrent() { return current; } publi..