gpt4 book ai didi

c++ - 使用函数指针显示函数的返回值

转载 作者:行者123 更新时间:2023-11-28 05:41:14 25 4
gpt4 key购买 nike

我需要使用函数指针来输出类中第一个虚函数的返回值。该函数位于一个虚拟表中,我试图返回该函数的值,但我一直收到返回给我的地址,而不是我想要的实际值。我知道我来对地方了,因为当我在调试期间输出值时,我打印了 (output[0][0])(); 的值,它给了我正确的值.但是,当我在终端窗口中运行该程序时,我无法让它给我相同的值。相反,我得到一个地址值。这是我当前的代码。

#include <cstdio>

class X
{
private:
int v_one;
int v_two;
virtual int adder()
{
return v_one/v_two;
}
public:
X(){
v_one = 15;
v_two = 3;
}
};

int getValue(void* x){
int a;
int *y = static_cast<int*>(x);
int (***output)();
output = (int (***)())(&y[0]);
a = (output[0][0])();
return a;
}

int main(){
X x;
printf("%d\n", getValue(&x));
return 0;
}

最佳答案

获取函数地址的唯一方法是询问编译器。
因为 adder 是私有(private)的,所以您无法从外部获取它,但您可以获取另一个返回地址的公共(public)方法。

#include <cstdio>
#include <iostream>

class X;
typedef int (X::*MFP)();
class X
{
private:
int v_one;
int v_two;
virtual int adder()
{
return v_one/v_two;
}
public:
X(){
v_one = 15;
v_two = 3;
}
static MFP getAddr()
{
return &X::adder;
}
};

int main()
{
MFP action = X::getAddr();
X a;
std::cout << (a.*action)() << "\n";
}

然后您可以使用 .*->* 运算符调用成员函数(但这些仍然需要一个有效的对象才能工作)。

您的 get 函数有太多错误。

int getValue(void* x){
int a;
// This cast is illegal.
int *y = static_cast<int*>(x);

// This is a function pointer.
// A method pointer is a completely different animal.
// The standard does not even guarantee a method pointer will fit
// inside a function pointer value (if you are using virtual tables
// it will absolutely not fit).
int (***output)();

// Yep this is meaningless.
output = (int (***)())(&y[0]);

// This is not how you call a method via a pointer.
// Where do you think the `this` parameter is set up?
a = (output[0][0])();

return a;
}

函数与方法指针

int (X::*method)()  = nullptr;
int (*function)() = nullptr;

std::cout << sizeof(method) << " : " << sizeof(function) << "\n";

Results in:
===========
16 : 8

关于c++ - 使用函数指针显示函数的返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37061473/

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