将模型配置文件作为模式实例

发布于 2024-09-25 22:32:00 字数 122 浏览 3 评论 0原文

假设您有一个应用程序的配置文件。此配置文件专门存储有关某个用户的一些数据。您可以保留配置文件的详细信息,并在每次运行时将其拉回。

配置文件是否适合状态模式?如果没有,是否有一个很好的启发式方法来对此类功能进行建模?

Suppose you have a profile for an application. This profile stores some data specifically about one user. You can persist the details of the profile and pull them back each run.

Does a profile make a good candidate for the State pattern? If not, is there a good heuristic to model this sort of functionality?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

虐人心 2024-10-02 22:32:00

状态设计模式适用于对象传递多个内部状态的情况,因此状态设计模式在这里不适用。

您可能只需要一个具有相应属性的配置文件类和一个可以存储配置文件对象并检索它的 DTO 对象。

如果您有小而简单的设计,则没有必要在某个问题中使用设计模式,实现简单的设计肯定会让您对设计有更多的控制。

State design pattern works in case of number of internal states through which your object pass so state design pattern is not applicable here.

You may only need a profile class with respective properties and a DTO object which can store profile object and retrieve it.

It'snot necessary to use a design pattern in a certain problem IF you have small and simple design , implement simple design it will definatley gives you more control over your design.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文