将模型配置文件作为模式实例
假设您有一个应用程序的配置文件。此配置文件专门存储有关某个用户的一些数据。您可以保留配置文件的详细信息,并在每次运行时将其拉回。
配置文件是否适合状态模式?如果没有,是否有一个很好的启发式方法来对此类功能进行建模?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
状态设计模式适用于对象传递多个内部状态的情况,因此状态设计模式在这里不适用。
您可能只需要一个具有相应属性的配置文件类和一个可以存储配置文件对象并检索它的 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.