C++模板-完整指南:了解有关dectype和返回类型的脚注注释

C++ Templates - The Complete Guide: Understanding footnote comment about decltype and return type(C++模板-完整指南:了解有关dectype和返回类型的脚注注释)
本文介绍了C++模板-完整指南:了解有关dectype和返回类型的脚注注释的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

C++模板-完整指南第2版在第435页提供了以下代码

#include <string>
#include <type_traits>

template<typename T, typename = void>
struct HasBeginT : std::false_type {};

template<typename T>
struct HasBeginT<T, std::void_t<decltype(std::declval<T>().begin())>>
    : std::true_type {};

并评论decltype(std::declval<T>().begin())用于测试在T上调用.begin()是否有效。

我认为这一切都有道理…

让我吃惊的是脚注中的评论:

不同于其他上下文中的调用表达式,decltype(call-expression)不要求非引用、非void返回类型是完整的。相反,使用decltype(std::declval<T>().begin(), 0)确实增加了调用的返回类型必须完整的要求,因为返回值不再是decltype操作数的结果。

我不太明白。

在尝试使用它时,我尝试使用以下代码查看它对void成员begin的行为。

struct A {
    void begin() const;
};

struct B {
};

static_assert(HasBeginT<A>::value, "");
static_assert(!HasBeginT<B>::value, "");

但这两个断言都通过或不使用, 0

推荐答案

您的演示使用void begin() const;测试以下内容

..。而是添加了调用的返回类型为Complete.

的要求

void返回类型与不完整的返回类型不同。为此,您可以尝试

struct X;

struct A {
    X begin() const;
};

这里,X确实是不完整的,现在, 0很重要。使用它,第一个static_assert不会通过,但它不会通过, 0

demo

这篇关于C++模板-完整指南:了解有关dectype和返回类型的脚注注释的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

windeployqt doesn#39;t deploy qwindowsd.dll for a debug application(windeployqt不会为调试应用程序部署qwindowsd.dll)
QLineEdit: Show a processed text, not the entered one, but keep it (custom echo mode)(QLineEdit:显示已处理的文本,而不是输入的文本,但保留它(自定义回显模式))
Showing tooltip in a Qt chart with multiple y axes(在带有多个y轴的Qt图表中显示工具提示)
QTableView, how to change dragging multiple items display(QTableView,如何更改拖动多项显示)
How can I build Qt 5.13.2 with GCC 11.1 on Windows?(如何在Windows上用GCC 11.1构建Qt 5.13.2?)
singleton template as base class in C++(C++中作为基类的Singleton模板)