定义重复的异常规范是否合法

发布于 2024-11-29 10:38:12 字数 128 浏览 3 评论 0原文

void FooThrow()  throw(string, string)
{
}

我在 g++ 4.4.3 中编译了上面的代码,没有任何错误。 但是,我不确定这是否是基于标准的合法语法。

void FooThrow()  throw(string, string)
{
}

I have compiled the above code in g++ 4.4.3 without any errors.
However, I am not sure whether or not this is a legal syntax based on the standard.

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

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

发布评论

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

评论(1

国际总奸 2024-12-06 10:38:12

在 C++03 中,15.4.6:

异常规范可以多次包含相同的类型[...],即使这样做是多余的。

该标准总是在异常规范中提到集合类型,这当然是故意的。

我会疏忽地忽略赫伯·萨特 (Herb Sutter) 的文章,该文章最好概括为:

# 不要使用异常规范。

In C++03, 15.4.6:

An exception-specification can include the same type more than once [...] even though doing so is redundant.

The standard always speaks of the set of types in an exception specification, surely that's deliberate.

I would be negligent to omit pointing out Herb Sutter's article, which is best summarized as,

# Don't use exception specifications.

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