gpt4 book ai didi

c++ - 将 C++ 实例方法分配给全局函数指针?

转载 作者:太空狗 更新时间:2023-10-29 19:50:24 24 4
gpt4 key购买 nike

问候,

我的项目结构如下:

\- base  (C static library)
callbacks.h
callbacks.c
paint_node.c
.
.
* libBase.a

\-app (C++ application)
main.cpp

在 C 库 'base' 中,我将全局函数指针声明为:

在单头文件中

回调.h

#ifndef CALLBACKS_H_
#define CALLBACKS_H_

extern void (*putPixelCallBack)();
extern void (*putImageCallBack)();

#endif /* CALLBACKS_H_ */

在单个 C 文件中,它们被初始化为

回调.c

#include "callbacks.h"
void (*putPixelCallBack)();
void (*putImageCallBack)();

其他 C 文件访问此回调函数为:

paint_node.c

#include "callbacks.h"
void paint_node(node *node,int index){

//Call callbackfunction
.
.

putPixelCallBack(node->x,node->y,index);
}

我编译这些 C 文件并生成一个静态库 'libBase.a'

然后在C++应用中,

我想将 C++ 实例方法分配给这个全局函数指针:

我做了如下的事情:

在sacm.cpp文件中

#include "Sacm.h"

extern void (*putPixelCallBack)();
extern void (*putImageCallBack)();

void Sacm::doDetection()
{
putPixelCallBack=(void(*)())&paintPixel;
//call somefunctions in 'libBase' C library

}

void Sacm::paintPixel(int x,int y,int index)
{
qpainter.begin(this);
qpainter.drawPoint(x,y);
qpainter.end();
}

但是编译的时候报错:

sacmtest.cpp: In member function ‘void Sacm::doDetection()’: sacmtest.cpp:113: error: ISO C++ forbids taking the address of an unqualified or parenthesized non-static member function to form a pointer to member function. Say ‘&Sacm::paintPixel’ sacmtest.cpp:113: error: converting from ‘void (Sacm::)(int, int, int)’ to ‘void ()()’

有什么建议吗?

最佳答案

这在 C++ FAQ 中得到了回答,[ 1 ].这不起作用,因为指针不与特定对象实例相关联。那里也给出了解决方案,创建一个使用特定对象的全局函数:

 Sacm* sacm_global;

void sacm_global_paintPixel(int x,int y,int index)
{
sacm_global->paintPixel(x, y, index);
}

void Sacm::doDetection()
{
putPixelCallBack = &sacm_global_paintPixel;
//call somefunctions in 'libBase' C library
}

您必须以某种方式正确设置全局变量。

关于c++ - 将 C++ 实例方法分配给全局函数指针?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2695743/

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