为什么在 C++ 中使用 (void)1 作为无操作?

发布于 2024-12-13 04:27:30 字数 265 浏览 3 评论 0原文

我正在查看第三方代码库,并看到 assert 宏的定义:

#define assert( x ) \
     if( !( x ) ) { \
        ThrowException( __FILE__, __LINE__ ); \
     } else \
        ((void)1)

(void)1 有何意义?它比惯用的 (void)0 更好吗?

I'm reviewing a third party codebase and see this definition of an assert macro:

#define assert( x ) \
     if( !( x ) ) { \
        ThrowException( __FILE__, __LINE__ ); \
     } else \
        ((void)1)

What's the point in (void)1? How is it better than idiomatic (void)0?

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

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

发布评论

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

评论(2

花想c 2024-12-20 04:27:30

(void)1(void)0 之间没有区别。

There's no difference between (void)1 and (void)0.

桃气十足 2024-12-20 04:27:30

我认为这并不重要(并且将被编译器优化)。 是一个标准 C++ 标头(使用标准 C 标头),它定义了一个标准 assert 宏,因此应用程序不应重新定义它。

I think it does not matter that much (and will be optimized away by the compiler). And <cassert> is a standard C++ header (using the standard <assert.h> C header) which defines a standard assert macro, so an application should not re-define it.

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