省略抛出异常的非 void 函数模板的 return 语句是否有效
我正在使用此处列出的资源学习 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。
不。
Yes 的非 void 函数/函数模板的 return 语句是否有效。非 void 返回函数必须抛出或返回一个值。它不能同时做这两件事。
这是有效的。但它永远不会返回值。抛出后的所有内容都是死代码。
Yes.
No.
Yes. A non-void returning function must either throw or return avalue. It cannot do both at the same time.
It's valid. But it never returns a value. Everything after the throw is dead code.