gpt4 book ai didi

c++ - 类方法指向其他类的其他方法

转载 作者:行者123 更新时间:2023-11-30 03:37:37 25 4
gpt4 key购买 nike

我想知道是否有可能使一个类的方法指向另一个类的另一个方法:

考虑一下:

// Class Foo:

class Foo
{
static int GetA(int a);
static int GetB(int b);
};



int Foo::GetA(int a)
{
return a * 2;
}

int Foo::GetB(int b)
{
return a * 4;
}

// Hooking class methods:

class HookFoo
{
static int HookGetA(int);
static int HookGetB(int);
};

int(HookFoo::*HookGetA)(int) = (int(HookFoo::*)(int))0x0; // (0x0 Memory address) or for example: &Foo::GetA;
int(HookFoo::*HookGetB)(int) = (int(HookFoo::*)(int))0x0; // (0x0 Memory address) or for example: &Foo::GetA;

我知道可以这样做:

int(*NewHook)(int) = &Foo::GetA;

但是我该怎么做才能将方法声明到一个类中呢?

最佳答案

这或多或少是您尝试实现的目标(最小的工作示例):

class Foo
{
public:
static int GetA(int a);
static int GetB(int b);
};

int Foo::GetA(int a)
{
return a * 2;
}

int Foo::GetB(int b)
{
return b * 4;
}

class HookFoo
{
public:
using FuncType = int(*)(int);
static FuncType HookGetA;
static FuncType HookGetB;
};

// Initialized with Foo::GetA
HookFoo::FuncType HookFoo::HookGetA = &Foo::GetA;
// nullptr'ed
HookFoo::FuncType HookFoo::HookGetB = nullptr;

int main() {
HookFoo::HookGetA(0);
}

因为Foo 中的方法是静态的,您可以使用简单的函数指针类型来引用它们。在这种情况下,您不必使用(实际上也不能使用)成员函数指针。
using 声明有助于获得更具可读性的代码。
当您正确初始化了您的hooks 后,您可以调用它们(因此是指向的函数),正如您在main 中看到的那样。
我为您的方法添加了几个可见性说明符,并且数据成员都是私有(private)的。

关于c++ - 类方法指向其他类的其他方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40100137/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com