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.
我知道用java语言编写函数是可能的。如何检查java中每个类之间的链接?例如学校 |1 ----- 1..*| 学生
感谢提前。
Java 中的一对多关系通常实现为 List 属性:
class School { private List <Student> students; ...
因此,要知道您的学校有多少学生,请致电students.size()。
students.size()
我希望我正确理解了你的问题。
我不确定我是否理解正确。但!如果您正在寻找一种创建 UML 图的方法,我可以向您推荐 Eclipse 的 ObjectAId 插件。非常易于安装和使用。