- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
上周埃里克·尼布勒 tweeted std::is_function
的非常紧凑的实现特质类:
#include <type_traits>
template<int I> struct priority_tag : priority_tag<I - 1> {};
template<> struct priority_tag<0> {};
// Function types here:
template<typename T>
char(&is_function_impl_(priority_tag<0>))[1];
// Array types here:
template<typename T, typename = decltype((*(T*)0)[0])>
char(&is_function_impl_(priority_tag<1>))[2];
// Anything that can be returned from a function here (including
// void and reference types):
template<typename T, typename = T(*)()>
char(&is_function_impl_(priority_tag<2>))[3];
// Classes and unions (including abstract types) here:
template<typename T, typename = int T::*>
char(&is_function_impl_(priority_tag<3>))[4];
template <typename T>
struct is_function
: std::integral_constant<bool, sizeof(is_function_impl_<T>(priority_tag<3>{})) == 1>
{};
最佳答案
总体思路
而不是列出所有有效的函数类型,如 sample implementation over on cpprefereence.com ,这个实现列出了所有不是函数的类型,然后只解析为 true
如果这些都不匹配。
非函数类型列表包括(从下到上):
void
和引用类型)std::is_function
明确地将可调用类型(如 lambdas 或具有函数调用运算符的类)视为不是函数。
is_function_impl_
is_function_impl
的重载每个可能的非函数类型的函数。函数声明可能有点难以解析,因此让我们将其分解为类和 union 案例的示例:
template<typename T, typename = int T::*>
char(&is_function_impl_(priority_tag<3>))[4];
is_function_impl_
它接受一个
priority_tag<3>
类型的参数并返回对 4
char
数组的引用s。从 C 语言的古老时代开始,按照惯例,声明语法因数组类型的存在而变得非常复杂。
T
,但第二个是指向
T
成员的指针类型
int
.
int
这里的部分并不重要,即。这甚至适用于
T
没有任何类型
int
的成员的 s .但它所做的是会导致
T
的语法错误。不属于类或 union 类型的 s。对于那些其他类型,尝试实例化函数模板将导致替换失败。
priority_tag<2>
和
priority_tag<1>
重载,它们使用它们的第二个模板参数来形成仅针对
T
编译的表达式s 分别是有效的函数返回类型或数组类型。只有
priority_tag<0>
重载没有这样一个限制性的第二个模板参数,因此可以用任何
T
实例化。 .
is_function_impl_
声明了四种不同的重载,它们的不同之处在于它们的输入参数和返回类型。他们每个人都需要不同的
priority_tag
type 作为参数并返回对不同唯一大小的 char 数组的引用。
is_function
is_function
,它实例化
is_function_impl
与
T
.请注意,由于我们为此函数提供了四种不同的重载,因此必须在此处进行重载解析。由于所有这些重载都是函数模板,这意味着
SFINAE有机会上场。
priority_tag<0>
.那么,如果实例化是最通用的,为什么不总是解决该重载呢?因为我们重载函数的输入参数。
priority_tag
以这样的方式构建
priority_tag<N+1>
公开继承自
priority_tag<N>
.现在,由于
is_function_impl
在此处使用
priority_tag<3>
调用,该重载比其他重载更适合重载解析,因此将首先尝试。仅当由于替换错误而失败时,才会尝试下一个最佳匹配,即
priority_tag<2>
重载。我们以这种方式继续,直到我们找到可以实例化的重载或我们到达
priority_tag<0>
,它不受约束并且将始终有效。由于所有非函数类型都被更高的优先级重载覆盖,这只能发生在函数类型上。
is_function_impl_
返回的类型的大小。来评估结果。请记住,每个重载都会返回对不同大小的 char 数组的引用。因此我们可以使用
sizeof
检查选择了哪个重载并且只将结果设置为
true
如果我们到达
priority_tag<0>
重载。
关于c++ - Eric Niebler 的 std::is_function 实现如何工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43470741/
我想用 is_function 测试一些内置函数,但失败了: > add = fn a, b -> a + b end #Function > is_function add true > is_fu
读到 anonymous functions 让我非常兴奋在 php 中,它可以让你声明一个比 create_function 更容易的变量。 .现在我想知道我是否有一个传递变量的函数,我如何检查它以
std::is_function 的以下实现如何? template struct is_function : std::integral_constant::value && !std::is_re
我将函数指针传递给函数模板: int f(int a) { return a+1; } template void use(F f) { static_assert(std::is_funct
我可以执行以下操作来检测某物是否是一个函数: void f() { } int main() { std :: cout :: value :: value #include class
考虑以下代码: struct Bar { void operator()() {} }; int main() { std::cout ::value ::value ::value是true
我有以下 is_function 的实现: template struct _is_function_helper : public _false_expression {}; template
建议here以下列方式实现: template struct is_function : std::true_type {}; template struct is_function : std::t
在 libcxx/include/type_traits , std::is_function以如此紧凑的方式实现: namespace __libcpp_is_function_imp { stru
您好,我正在尝试在 C++11 中实现类似 C++ 概念的功能 (C++14)。这个想法只是为 std::for_each() 算法编写包装函数,我只检查第三个参数是否是一个函数。所以我写了下面的代码
我正在尝试使用 std::is_function 来确定变量是否为函数指针。 运行以下代码时 #include #include using namespace std; int main() {
C++17 将有一个 Callable 概念,我想知道 std::is_function::value 的类型到底有什么区别?是true .它们等价吗?一个是另一个的超集吗? 最佳答案 C++17 w
上周埃里克·尼布勒 tweeted std::is_function 的非常紧凑的实现特质类: #include template struct priority_tag : priority_ta
有如下一段代码: #include #include template ::value >::type> i
根据C++ reference ,这是 std::is_function 的有效实现(为简洁起见,不包括可变函数的部分特化和 noexcept 说明符): template struct is_fun
给定以下代码,其中类型 Function是自动推导的,当我断言是否 Function 时,我得到了意想不到的结果是一个使用 std::is_function 的函数: #include #inclu
我正在查看我的 header (g++-4.5.2) 中一些模板的实现,我发现了以下内容: /// is_function template struct is_function : publ
下面的编译失败是由于 libstdc++ 缺陷造成的,还是此行为符合事务内存 TS (n4514)? #include static_assert(std::is_function_v, "");
我是一名优秀的程序员,十分优秀!