什么时候应该使用 C# 4.0 附带的代码合约?

发布于 2024-10-06 10:24:18 字数 193 浏览 1 评论 0原文

我正在解决一个关于 SO 的问题,该问题是关于 c# 4.0 的新功能 和 jon skeet 的答案有 C# 4.0 的代码契约功能..但我真的不明白何时使用它们..有什么建议吗...

I was going through a question on SO which was about new features of c# 4.0 and jon skeet's answer had Code Contracts feature of C# 4.0.. But i really cant understand when to use them.. Any suggestion...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夜空下最亮的亮点 2024-10-13 10:24:18

只要有可能。例如,在方法开头使用保护子句的任何地方,

public void Write(TextWriter tw, object o) {
    if(tw == null) {
        throw new ArgumentNullException("tw");
    }
    if(o == null) {
        throw new ArgumentNullException("o");
    }
    tw.WriteLine(o.ToString());
}

您都应该使用

public void Write(TextWriter tw, object o) {
    Contract.Requires(tw != null);
    Contract.Requires(o != null);
    tw.WriteLine(o.ToString());
}

Contract 的优点在于,它们会公开,并且可以成为文档的一部分,而无需额外的操作。就你而言,因为保护条款不是公开的,只能通过一些繁重的工作才能放入文档中。因此,通过Contract,您可以在代码中更清晰地表达需求和承诺。

Whenever possible. For example, anywhere that you would use a guard clause at the beginning of a method like

public void Write(TextWriter tw, object o) {
    if(tw == null) {
        throw new ArgumentNullException("tw");
    }
    if(o == null) {
        throw new ArgumentNullException("o");
    }
    tw.WriteLine(o.ToString());
}

you should instead use

public void Write(TextWriter tw, object o) {
    Contract.Requires(tw != null);
    Contract.Requires(o != null);
    tw.WriteLine(o.ToString());
}

What is beautiful about Contract is that they become public and can be made part of the documentation with no additional work on your part where as the guard clause were not public and could only be put into documentation with some heavy lifting. Therefore, with Contract you can more clearly express requirements and promises in your code.

儭儭莪哋寶赑 2024-10-13 10:24:18

合约的真正美妙之处在于,您不必硬连线那些丑陋的参数名称字符串......

if(tw == null) throw new ArgumentNullException("tw");

what's really beautiful with contracts is that you don't have to hard wire those ugly argument name strings...

if(tw == null) throw new ArgumentNullException("tw");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文