MSVC equivalent of __attribute__ ((warn_unused_result))?(MSVC 相当于 __attribute__ ((warn_unused_result))?)
问题描述
我发现 __attribute__ ((warn_unused_result))
作为一种鼓励开发人员不要忽略函数返回的错误代码的方法非常有用,但我需要它与 MSVC 一起工作,以及gcc 和 gcc 兼容的编译器,例如 ICC.Microsoft Visual Studio C/C++ 编译器是否具有等效机制?(到目前为止,我已经尝试在 MSDN 中涉水但没有任何运气.)
I'm finding __attribute__ ((warn_unused_result))
to be very useful as a means of encouraging developers not to ignore error codes returned by functions, but I need this to work with MSVC as well as gcc and gcc-compatible compilers such as ICC. Do the Microsoft Visual Studio C/C++ compilers have an equivalent mechanism ? (I've tried wading through MSDN without any luck so far.)
推荐答案
它是 _Check_return_
.有关类似注释和 此处 了解函数行为.自 MSVC 2012 起支持.
It's _Check_return_
. See here for examples of similar annotations and here for function behaviour. It's supported since MSVC 2012.
示例:
_Check_return_
int my_return_must_be_checked() {
return 42;
}
这篇关于MSVC 相当于 __attribute__ ((warn_unused_result))?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MSVC 相当于 __attribute__ ((warn_unused_result))?
基础教程推荐
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- Windows Media Foundation 录制音频 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01