说合约静态检查器扩展方法不允许为空?

发布于 2024-11-26 16:47:59 字数 379 浏览 1 评论 0原文

 Contract.Requires(completeURL.IsUri()); // Error: Contract.Requires(completeURL != null)

我可以在没有 Contract.Assume() 的情况下执行此操作吗?
我的意思是这样的:

    [Pure]
    [DefinitelyNotANullStringAfterThatMethod]
    public static bool IsUri(this string str)
    {
        return Uri.IsWellFormedUriString(str, UriKind.Absolute);
    }
 Contract.Requires(completeURL.IsUri()); // Error: Contract.Requires(completeURL != null)

Can I do this without Contract.Assume()?
I mean something like this:

    [Pure]
    [DefinitelyNotANullStringAfterThatMethod]
    public static bool IsUri(this string str)
    {
        return Uri.IsWellFormedUriString(str, UriKind.Absolute);
    }

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

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

发布评论

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

评论(3

秋风の叶未落 2024-12-03 16:47:59
    [Pure]
    public static bool IsUri(this string str)
    {
        Contract.Ensures(!Contract.Result<bool>() || str != null); // by Dan Bryant
        return Uri.IsWellFormedUriString(str, UriKind.Absolute);
    }

或许?

    [Pure]
    public static bool IsUri(this string str)
    {
        Contract.Ensures(!Contract.Result<bool>() || str != null); // by Dan Bryant
        return Uri.IsWellFormedUriString(str, UriKind.Absolute);
    }

Maybe?

方觉久 2024-12-03 16:47:59

根据我的经验,拥有这样需要验证方法的合同会让你自己变得非常困难。

如果您更改方法的签名,使其采用 Uri 而不是字符串,您可以让生活变得更简单 - 因为它必须是一个有效的Uri

In my experience, having contracts like this which require validation methods makes things very hard on yourself.

If you change the signature of the method so that it takes a Uri rather than a string, you make life simpler - as it has to be a valid Uri.

阳光的暖冬 2024-12-03 16:47:59
    [Pure]
    public static bool IsUri(this string str)
    {
        Contract.Ensures(!Contract.Result<bool>() || str != null); // by Dan Bryant
        var result = Uri.IsWellFormedUriString(str, UriKind.Absolute);
        Contract.Assume(!result || str != null); 
        return result;
    }
    [Pure]
    public static bool IsUri(this string str)
    {
        Contract.Ensures(!Contract.Result<bool>() || str != null); // by Dan Bryant
        var result = Uri.IsWellFormedUriString(str, UriKind.Absolute);
        Contract.Assume(!result || str != null); 
        return result;
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文