代码合约错误

发布于 2024-12-12 09:37:45 字数 86 浏览 2 评论 0原文

有没有办法改变代码契约在运行时的行为方式?例如,当运行时前置条件或后置条件失败时,应用程序就会崩溃。有没有一种方法可以显示 MessageBox 而不是崩溃?

is there a way to alter the way the code contracts behave during run time? as in, when a pre or post conidtion fails during run time, the application crashes. Is there a way instead of crashing, have a MessageBox displayed??

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

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

发布评论

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

评论(1

愿得七秒忆 2024-12-19 09:37:45

当合约失败时,程序不会“崩溃”,但会抛出异常。 Contracts 类让您可以控制异常类型。

因此,您需要某种形式的异常处理,而不仅仅是合同。

话虽如此,失败的合同通常严重到足以终止申请。

When a contract fails the program does not 'crash' but an Exception is thrown. The Contracts class lets you control what kind of exception.

So you need some form of Exception Handling, and not just for the Contracts.

Having said that, a failing Contract is usually severe enough to terminate the application.

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