将代码和相关内容(元数据,..)放在一起的做法的名称?
如果我尝试将代码和“其他相关内容”放在一起,那怎么称呼?或者如果我没有做到这一点,那会是一个有名字的(反)模式吗? (我需要用这个名称来指代某些人称之为科学的文档中的这种做法。)
我的意思的一个例子是在 Java 中使用注释而不是 XML 配置文件(例如 JPA、Spring)来保持元数据紧密相连源代码,从而降低了代码更新后不会忘记更新元数据的风险。
If I try to keep code and "other related stuff" together, how is that called? Or if I fail to do this, would that be an (anti-)pattern with a name? (I need the name to refer to this practice in a document that some people will call scientific.)
An example of what I mean would be to use annotations rather than XML configuration files in Java (for example JPA, Spring) to keep metadata close to the source code and thus reducing the risk that if code is updated it is not forgotten to update metadata.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这听起来像功能内聚(来自维基百科):
其他类型的内聚力有:
要进一步阅读,我建议 Steve McConnell 的 代码完整,第二版。
This sounds like functional cohesion (from Wikipedia):
Other types of cohesion are:
For further reading, I suggest Steve McConnell's Code Complete, 2nd Edition.