- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在修补 std::mem_fn
,但无法设法将其绑定(bind)到结构成员的数据/函数(更深一层)。
我希望代码能比我描述的更好地说明问题,因为我不熟悉术语。
#include <functional>
struct Int
{
Int(int _x = 0) : x(_x) {}
int GetInt() const { return x; }
int x;
};
struct IntWrapper
{
IntWrapper(int _x = 0) : test(_x) {}
int GetWrappedInt() const { return test.GetInt(); }
Int test;
};
int main()
{
IntWrapper wrapper{ 123 };
auto x = std::mem_fn(&IntWrapper::GetWrappedInt);
//auto y = std::mem_fn(&IntWrapper::test.GetInt); // ERROR
//auto z = std::mem_fn(&IntWrapper::test.x); // ERROR
int a = x(wrapper);
//int b = y(wrapper);
//int c = z(wrapper);
//std::cin.ignore();
return 0;
}
错误信息如下:
error C2228: left of '.GetInt' must have class/struct/union
error C2672: 'std::mem_fn': no matching overloaded function found
error C3536: 'y': cannot be used before it is initialized
error C2064: term does not evaluate to a function taking 1 arguments
问题:是否有可能进行这些绑定(bind)?为此我需要 std::bind
吗?
最佳答案
根据规范,std::mem_fn()
将成员函数指针作为参数,即
auto y = std::mem_fn(&Int::GetInt);
auto b = y(wrapper.test);
据我所知,std::mem_fn()
或多或少已经过时了,因为 lambda expressions .例如
auto y = [](IntWrapper const&wrapper) { return wrapper.test.GetInt(); };
auto b = y(wrapper); // note: no need to get hold of member 'test'
关于c++ - mem_fn 到成员对象的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44625665/
这是一个后续问题 mem_fn to function of member object 这是当前代码。 #include #include #include struct Int {
KDE/PIM Zanshin 项目在其代码中的多个位置使用了 std::mem_fn,结果证明至少有 1 个版本的 Apple clang(随 OS X 10.9 提供的最新 Xcode 提供的版本
我很困惑为什么需要 std::mem_fn。 我有一个函数接受任何可调用对象(lambda、函数指针等),并将其绑定(bind)到一个参数。 例如: template void Class::DoBi
我正在修补 std::mem_fn,但无法设法将其绑定(bind)到结构成员的数据/函数(更深一层)。 我希望代码能比我描述的更好地说明问题,因为我不熟悉术语。 #include struct In
编译以下代码时,Visual Studio报告: \main.cpp(21): error C2664: 'std::_Call_wrapper,false> std::mem_fn(int Clas
我已经实现了一个C++程序,该程序创建了三个不同的Person对象。这些对象被共享并存储在 vector 中。 函数getVector()以const std::vector>&作为输入并返回std:
我有以下片段: struct Foo { Foo(int num):num_(num){} void print_add(int i) const { std::cout vpf{
我有一个更复杂的包装类版本,它封装了如下用户类型的 std::vector。 struct UserType1Encapsulator { template UserType1Encap
我可以用 C++ 实现以下功能吗?在调用回调方法之前,我想保持未指定 myInstance 变量,而不是将其包含在 boost::bind 实例中。 MyClass *myInstance; void
我有一个带有默认参数的成员函数的类。 struct Class { void member(int n = 0) {} }; 通过 std::tr1::mem_fn 我可以调用它: C
编译以下代码时,Visual Studio 报告: \main.cpp(21): error C2664: 'std::_Call_wrapper,false> std::mem_fn(int Cla
有人可以推荐 tr1 的 mem_fn 和绑定(bind)实用程序的一些很酷的实际用途吗?我不需要深奥的 c++ 来开发库。只是一些利用这些的应用程序级编码。 任何帮助将不胜感激。 最佳答案 我已将
考虑这个人为的例子: template void funny_transform(Iter first, Iter last, vector& v) { transform(first, la
考虑 the following code : struct A { int& getAttribute(); const int& getAttribute() const; };
这是由于 mem_fn() 的实现没有定义 __forceinline/inline/__attribute__((always_inline)) 造成的吗?是否可以解决这个问题,例如使用自己的 me
我正在使用 C++11 和 MSVC2013 尝试在我的类中使用函数指针来拥有自己的成员函数。 class MyClass { public: // ... QColor Co
auto 很好,但我需要在类中声明一个成员,而不是堆栈中的变量。 decltype 有效,但不知何故看起来很奇怪 class Automation { void _init_state(int
我想把这个结果: std::tr1::mem_fn(&ClassA::method); 在一个变量中,这个变量的类型是什么? 看起来像这样: MagicalType fun = std::tr1::m
我理解在其类之外传递成员函数地址的基本问题。我觉得 mem_fn() 可能是解决方案,但我在具体细节上遇到了麻烦。 我在类 p 中有一个成员函数,当前声明为 typedef void (*valNam
我有以下代码: #include struct X { int get() const& { return 42; } }; template std::result
我是一名优秀的程序员,十分优秀!