Windows 服务中的断言

发布于 2024-10-04 23:52:20 字数 156 浏览 6 评论 0原文

我想在后端 Windows 服务代码中使用 _ASSERTE 进行断言。但据我了解,默认行为将由于消息框而挂起服务。

在 Windows 服务中安全地执行断言的最佳方法是什么?

编辑: 我应该提到,如果在控制台模式下运行,代码仍应使用正常行为;例如在进行单元测试时。

I'd like to assert using _ASSERTE in a backend Windows service code. But as I understand, the default behaviour will hang the service because of the message box.

What is the best way to safely do assertions in a Windows service?

Edit:
I should've mentioned that code should still use the normal behaviour, if running in the console mode; for example when being unit tested.

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

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

发布评论

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

评论(1

森林散布 2024-10-11 23:52:20

只需编写您自己的断言函数即可。

void assert(bool condition)
{
    //Stop service and log failure to event log here ;)
}

Simply write your own assert function.

void assert(bool condition)
{
    //Stop service and log failure to event log here ;)
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文