说合约静态检查器扩展方法不允许为空?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或许?
Maybe?
根据我的经验,拥有这样需要验证方法的合同会让你自己变得非常困难。
如果您更改方法的签名,使其采用
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 astring
, you make life simpler - as it has to be a validUri
.