使用 API 的 OO 编程中的类图
- 我正在尝试为我所在的应用程序创建一个类图 尝试在给定的框架内进行创作。
- 该框架暴露了 它自己的自定义 API 和我设计中的一些类是 由 API 中的类表示。
- 其中一些课程倾向于 变得相当复杂,所以我面临着如何 在我的类图中表示这些类 - 或者我什至应该 尝试这样做。
更具体地说,
- 我的应用程序将工件从一台服务器移动到另一台服务器。
- 我正在开发的框架提供了类和方法来表示源服务器和目标服务器并与之通信。
- 现在,我知道我的类图需要考虑 服务器类及其功能的表示,但我怎样才能 在我的类图中执行此操作。
提前感谢您的帮助。
- I am trying to create a class diagram for an application that I am
trying to create within a given framework. - This framework exposes
its own custom API and some of the classes in my design is
represented by the classes in the API. - Some of these classes tend to
get pretty complex, so I am faced with the question of how to
represent these classes in my class diagram - or should I even
attempt to do that.
To be more specific,
- My application moves artifacts from one server to another.
- The framework I am working on provides classes and methods to represent and communicate with the source and destination server.
- Now, I know that my class diagram needs to account for the
representation of the server class and its functions, but how can I
do it in my class diagram.
Thank you for your help in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以为您的框架/自定义 API 制作一个包,其中包含您需要链接到您自己的类的类(来自自定义 API)。这是一个示例:
希望有所帮助。
You can make a package for your framework/custom API which contains the classes (from the custom API) you need to link to your own classes. Here's an example:
Hope it helps.