网站首页  词典首页

请输入您要查询的英文单词:

 

单词 design by contract
释义

design by contract

  • 网络契约式设计;按契约设计;按合同设计
1.
契约式设计
2008年7月10日 随笔档案 - 两颗番茄 - 博客园 ... derived class 派生类 design by contract 契约式设计 design pattern 设计模式 ...
www.cnblogs.com
2.
按契约设计
根据‘按契约设计’(Design by Contract),只要方法(查询与命令)可以自由地混合在一起,并且不会违反类的不变式,那么 …
lovebeyond19831993.blog.163.com
3.
按合同设计
...ive C#中文版:改善C#程序的...接口是一种按合同设计design by contract)的方式:一个实现了某个接口的类型,必须提供 …
www.360doc.com
4.
按契约编程
许多的程序员使用按契约编程(Design by Contract)的形式。这种形式的编程需要显式的前提条件测试以保证方法调用是否合适…
blog.csdn.net
5.
合约设计
UML软件工程组织 ... Design for testability 易测试性的设计 Design by Contract 合约设计 artifact 工件 ...
www.uml.org.cn
6.
合约式设计
软件的易测试性设计方法 合约式设计(Design by Contract) 内建式测试 可操作性—“运行地越好,被测试的效率越高。” 可观察 …
www.docin.com

例句

释义:
1.
Therefore, strictly speaking, it may appear that Design by Contract isn't an appropriate candidate for an AOP approach at all.
所以,严格来说,契约式设计看起来可能根本不是AOP技术的备选方案。
www.ibm.com
2.
Bertrand Meyer introduced the concept of design by contract to do exactly the above.
贝特朗迈耶介绍合同的设计概念来做到这点以上。
word.hcbus.com
3.
Now that you understand the necessary infrastructure for implementing Design by Contract with AOP, you can put it to work.
理解了用AOP实现契约式设计的必要基础设施后,就可以让它工作了。
www.ibm.com
4.
Design by Contract avoids extra code and improves performance, as long as all clients of a class abide by the contract.
契约式设计避免了额外的编码并提高了性能,只要所有的客户都遵守契约。
www.ibm.com
5.
Design by Contract can also facilitate code reuse, since the contract for each piece of code is fully documented.
契约式编程也可以用来代码重用,因为每段代码的契约都被完全地文档化了。
www.cnthub.com
6.
Significant patterns include design by contract, well-defined interfaces, composability, predictable behavior, and component testing.
重要模式包括契约式设计、定义良好的接口、可组合性、可预测的行为和组件测试。
www.ibm.com
7.
Design by Contract, or Programming by Contract, is not a new concept in programming, many languages already having such implementations.
契约式设计(或“契约式编程”)并不是编程领域的新概念,许多语言中已经有类似的实现了。
www.infoq.com
8.
Bertrand Meyer introduced the concept of Design by Contract.
BertrandMeyer介绍了契约式设计的概念。
www.ibm.com
9.
In this final article in the AOP@Work series, I introduce you to Contract4J, an AspectJ-based tool that supports Design by Contract.
在AOP@Work系列的最后这篇文章中,我将介绍Contract4J,这是一个基于AspectJ的工具,支持契约式设计。
www.ibm.com
10.
Note that Design by Contract tests can be turned off in production deployments to remove their overhead.
注意,在生产部署时可以关闭契约式设计测试,以消除它们的开销。
www.ibm.com
1.
Contract4J makes it efficient and straightforward to define Design by Contract tests in an intuitive manner, using Java 5 annotations.
Contract4J使用Java5标注,以直观的方式使得契约式设计测试的定义变得更有效更简单。
www.ibm.com
2.
Another approach is Design by Contract, a proven technique for clarifying component design details.
另一种方法是契约式设计,这是阐明组件设计细节的一项切实可行的技术。
www.ibm.com
3.
What's more, this crosscutting concern starts to bleed into the notion of design by contract (DBC).
而且,横切关注点开始渗入到契约式设计(DBC)的概念中。
www.ibm.com
4.
Design by Contract has some advantages over unit testing, but the two methods are complementary.
契约式设计比起单元测试有些优势,但是这两种方法是互补的。
www.ibm.com
5.
As previously noted, it is true that unit testing and Design by Contract accomplish similar objectives by different means.
正如前面提到过的,单元测试和契约式设计用不同的方式实现类似的目标。
www.ibm.com
6.
Contract4J is an open source developer tool that implements design by contract using Java 5 annotations (see Resources).
Contract4J是一个开源的开发人员工具,它用Java5标注(请参阅参考资料)实现契约式设计。
www.ibm.com
7.
AspectJ home page: Learn more about using aspects for Design by Contract testing.
AspectJ主页:了解使用方面进行契约式设计测试的更多内容。
www.ibm.com
8.
Static verification and design by contract relay on theorems that are mostly based on deterministic approach.
静态验证和契约式设计理论大部分属于确定性理论的范畴。
www.infoq.com
9.
A Design by Contract tool like Contract4J is most helpful in situations where unit testing is sparse or difficult.
像Contract4J这样的契约式设计工具在单元测试比较分散或比较困难的时候最有帮助。
www.ibm.com
10.
Design by contract is a tool for finding and fixing logic bugs in code.
契约式设计是一种发现和修复代码中逻辑错误的工具。
www.ibm.com
1.
See the section Design by contract for details on this.
有关这一点的详细信息,请参阅按合同设计一节。
www.ibm.com
2.
Could you give an overview of Design by Contract?
你可以概括描述一下契约式设计吗?
www.52rd.com
3.
Design Pattern is design by contract.
关于设计模式,还有一种说法,
941xz.com
4.
Design by Contract also makes explicit the contract definition that is more implicit in unit tests.
契约式设计也做了显式的合约定义,而在单元测试中这些更隐式。
www.ibm.com
5.
You don't really need Contract4J to write Design by Contract tests.
编写契约式设计测试,实际上可以不需要Contract4J。
www.ibm.com
6.
He then goes into Design by Contract principles, and requirements management
接着谈到契约式设计(DesignbyContract)原则和需求管理
www.infoq.com
7.
Design by contract pattern for digital city software architecture
数字城市软件体系结构的合约设计模式
www.ilib.cn
8.
Design by Contract in the Application of Trusted Business Component
契约式设计在可信业务构件中的应用
service.ilib.cn
9.
Design by Contract, or defensive programming
契约式设计或防御性编程
www.ibm.com
10.
Research and Implementation of Components Development with Design by Contract Based on AOP
基于AOP在组件开发中支持契约的研究与实现
www.ilib.cn
1.
Peking University Java Design by Contract Tool
语言合约式设计支撑工具软件
www.sei.pku.edu.cn
2.
Using AOP for transparent Design by Contract
用AOP进行透明的契约式设计
www.ibm.com
3.
Unit testing and Design by Contract
单元测试和契约式设计
www.ibm.com
随便看

 

英汉双解词典包含2704715条英汉词条,基本涵盖了全部常用单词的翻译及用法,是英语学习的有利工具。

 

Copyright © 2004-2022 Newdu.com All Rights Reserved
更新时间:2025/8/7 21:54:36