引发异常的 Win32 API 包装器?
我见过许多 Windows API 的包装器(MFC、ATL、WTL 等),但它们似乎都没有使用异常处理——您仍然必须检查大多数函数的错误代码,这很容易忘记(或因懒惰而省略)。
是否有任何包装器实际上抛出异常而不是返回错误代码?
I've seen many wrappers for the Windows API (MFC, ATL, WTL, etc.) but none of them seem to use exception-handling -- you still have to check the error codes for most functions, which is easy to forget (or to omit due to laziness).
Is there any wrapper out there that actually throws exceptions instead of returning error codes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
VCL 在遇到错误时会引发异常。
The VCL raises exceptions when it encounters errors.