本文介绍了物体,物体,这么多物体! ;-)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 大家好, 关于对象,我有一个非常普遍但非常重要的问题。 我的问题是,我应该何时创建他们?我知道这是一个垃圾问题所以 让我进一步解释一下。 让我们举一个针对数据库的用户管理的例子。我可能需要做的事情包括: - 创建新用户 - 更改用户电话号码 - 删除用户 - 吸引用户年龄 - 更新用户密码 所有这些都不是那些操作之一,需要实现一个User对象的实例化。你可以通过静态方法来实现。 问题是,你上面的那种操作必须占用户所有 操作的80%左右。同样,类似于这些的操作会影响大多数商业实体,无论是Bug还是角色或Car对象。 所以我的问题是 - 是确实如此,那个时间很长的一部分,你根本不需要实例化一个物体来实现你的目标,或者说我用差劲的方法来赚钱。设计我的应用程序? 非常感谢任何可以分享建议的人。 最基本的问候 tceHi all,I have a very general but quite significant question about objects.My question is, when should I create them? I know thats a crap question solet me explain a bit further.Lets take an example of user management against a database. Things I mightlike to do include:- Creating a new user- Changing a users phone number- Deleting a user- Getting a users age- Updating a users passwordThe thing with all this is not one of those operations require theinstantiation of a User object. You could do it through static methods.The thing is, you the sort of operations above must make up 80% or so of alloperations on users. Likewise, operations similar to these ones effect mostbusiness entities, be it a Bug or a Role or a Car object.So my question is - is it really the case, that a good proportion of thetime, you dont need to instantiate an object at all to achieve your aims, oram I using a poor approach to design my applications?Many thanks to anyone who can share some advice.Kindest Regardstce推荐答案 这篇关于物体,物体,这么多物体! ;-)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-14 13:13