- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我可以执行以下操作来检测某物是否是一个函数:
void f()
{
}
int main()
{
std :: cout << std :: is_function <decltype(f)> :: value << std :: endl; // true
}
现在,如果我想做同样的事情,但使用的函数是类的方法,会发生什么情况?
我天真地尝试做类似的事情
class myclass
{
public:
void f()
{
}
};
int main()
{
std :: cout << std :: is_function <decltype(myclass :: f)> :: value << std :: endl;
}
但是我明白了
Call to non-static member function without an object argument
我该怎么办?我想要类似上面的东西......好吧,只打印 true
。
最佳答案
成员函数指针不同于普通的函数指针。此外,如果没有 &
,myclass::f
格式错误。对于成员函数,存在 std::is_member_function_pointer
.
#include <iostream>
#include <type_traits>
class myclass
{
public:
void f() {}
};
int main()
{
std::cout << std::is_member_function_pointer<decltype(&myclass::f)>::value << std::endl;
}
关于c++ - 成员函数上的 std::is_function?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36603003/
我想用 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, "");
我是一名优秀的程序员,十分优秀!