Law of Demeter的意思|示意

美 / / 英 / /

得墨忒耳定律


Law of Demeter的网络常见释义

得墨忒耳定律 以上是文档“得墨忒耳定律(Law of Demeter)”的部分内容摘录

迪米特法则 我的理解是,对于不同层次的编程,高层次暴露给低层次的应当只是接口,而不是它的具体类 LoD (迪米特法则,Law of Demeter):只与你直接的朋友通信,而避免和陌生人通信。

迪米特法例 ...微 原则(十二)LOD(迪米特法例) 2012年2月1日 联系商易上海电子商务网站建设,了解更多 LOD(Law of Demeter,迪米特法例) 又称起码常识原则(Least Knowledge Principle,LKP) 一个对象该当对...

最少知识原则 ...子系统中的一组接口提供了统一的外观界面(Facade),从而减少客户端与子系统之间的耦合,遵循了“最少知识原则”(Law of Demeter)的“Only talk to your friends”,因此我们再也不用担心要阅读子系统复杂的API手册了。

Law of Demeter相关短语

1、 Law of Demeter LoD 迪米特法则 ; 七

2、 LoD The Law of Demeter 迪米特法则

3、 The Law of Demeter 迪米特法则

Law of Demeter相关例句

The interesting thing about method Pointers is that their use can be an indication that the code violates the Law of Demeter.

关于方法指针,有意思的事情是:它们的使用可能就表明代码违反了迪米特法则。

In Listing 9, you can see how this code demonstrates the Law of Demeter — and how it could be used to wreak havoc with people's wallets!

在清单9中,可以看到这些代码演示了迪米特法则——如何用它洗劫人们的钱包!

Lastly, the closure structure more closely follows the Law of Demeter since your object would, theoretically, be "reaching through" via the prototype chain.

最后,闭合结构更接近于得墨忒耳法自你的对象,从理论上讲,是“通过”通过原型链。

Using the motto Talk only to immediate friends, the Law of Demeter states that we should avoid invoking methods of an object that was returned by another object's method.

迪米特法则使用只与直接朋友对话这句格言指出:我们应当避免调用由另一个对象方法返回的对象上的方法。