省略抛出异常的非 void 函数模板的 return 语句是否有效

发布于 2025-01-11 08:07:02 字数 787 浏览 0 评论 0原文

我正在使用此处列出的资源学习 C++。特别是,我读到了有关异常的内容,并想知道省略抛出如下所示的非 void 函数/函数模板的 return 语句是否有效:

示例 1

#include <iostream>
//this function template does not have a return statement
template<typename T>
T func()
{
    int x = 4;
    std::cout<<"x: "<<x<<std::endl;
    throw;
}

int main()
{
  func<double>();
}

示例 2< /strong>

#include <iostream>
//this function does not have a return statement
int func()
{
    int x = 4;
    std::cout<<"x: "<<x<<std::endl;
    throw;
}

int main()
{
  func();
}

我的问题是示例 1 和示例 2 有效吗?或者我们有 UB/格式错误。

I am learning C++ using the resources listed here. In particular, i read about exceptions and want to know if is it valid to omit the return statement of a non-void function/function template that throw as shown below:

Example 1

#include <iostream>
//this function template does not have a return statement
template<typename T>
T func()
{
    int x = 4;
    std::cout<<"x: "<<x<<std::endl;
    throw;
}

int main()
{
  func<double>();
}

Example 2

#include <iostream>
//this function does not have a return statement
int func()
{
    int x = 4;
    std::cout<<"x: "<<x<<std::endl;
    throw;
}

int main()
{
  func();
}

My question is that are example 1 and example 2 valid? Or we have UB/ill-formed.

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

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

发布评论

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

评论(1

示例 1 和示例 2 有效吗?

是的。

或者我们有 UB/格式错误。

不。

省略抛出异常的非 void 函数/函数模板的 return 语句是否有效

Yes 的非 void 函数/函数模板的 return 语句是否有效。非 void 返回函数必须抛出或返回一个值。它不能同时做这两件事。

int func(){ int x = 4; 也是如此扔;返回 x;} 有效

这是有效的。但它永远不会返回值。抛出后的所有内容都是死代码。

are example 1 and example 2 valid?

Yes.

Or we have UB/ill-formed.

No.

Is it valid to omit the return statement of a non-void function/function template that throw

Yes. A non-void returning function must either throw or return avalue. It cannot do both at the same time.

So is int func(){ int x = 4; throw; return x;} valid

It's valid. But it never returns a value. Everything after the throw is dead code.

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