C89 中的断言?

发布于 2024-08-19 17:47:10 字数 280 浏览 6 评论 0原文

我正在 MSFT Visual Studio 2010 Beta 上编写 C89。如何做出类似于 Java 的 assert 关键字的断言?我想我需要定义一个宏,但我不知道如何定义。 (这似乎是以前做过的事情,所以我宁愿使用它,也不愿尝试自己动手。)

这是一个猜测:

int assert(int truth_value) {
   // crash the program with an appropriate error message   
}

I'm writing C89 on MSFT Visual Studio 2010 Beta. How can I make an assertion, similar to Java's assert keyword? I think I need to define a macro, but I'm not sure how. (It seems like this is something that's been done before, so I'd rather use that than try to roll my own.)

Here's a guess:

int assert(int truth_value) {
   // crash the program with an appropriate error message   
}

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

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

发布评论

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

评论(1

变身佩奇 2024-08-26 17:47:10

C89 有 ,其中包含您要查找的宏。

#include <assert.h>
assert(expression);

从文档中:

assert() 宏测试给定的表达式,如果为 false,则
调用进程终止。诊断消息写入stderr
并且调用 abort(3) 函数,有效地终止程序。

如果表达式为真,则assert()宏不执行任何操作。

C89 has <assert.h>, which contains the macro you're looking for.

#include <assert.h>
assert(expression);

From the documentation:

The assert() macro tests the given expression and if it is false, the
calling process is terminated. A diagnostic message is written to stderr
and the abort(3) function is called, effectively terminating the program.

If expression is true, the assert() macro does nothing.

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