- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的错误:
error: cannot convert 'MainWindow::producerThreadFunction' from type 'void* (MainWindow::)(void*)' to type 'void* (*)(void*)'
if (pthread_create (&producer, NULL, producerThreadFunction, NULL))
^
头文件:
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QApplication>
#include <pthread.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/syscall.h>
#include <iostream>
#include <QDebug>
class MainWindow : public QMainWindow
{
Q_OBJECT
pthread_mutex_t mutexVariable = PTHREAD_MUTEX_INITIALIZER;
pthread_cond_t conditionVariable = PTHREAD_COND_INITIALIZER;
QList <int> queueLIFO;
public:
MainWindow(QWidget *parent = 0);
~MainWindow();
// This function is run by the thread `Producer`.
void *producerThreadFunction (void *arg);
// This function is run by the thread `Consumer`.
void *consumerThreadFunction (void *arg);
int start ();
};
#endif // MAINWINDOW_H
源文件:(发生错误的函数)
int MainWindow :: start()
{
pthread_t producer;
pthread_t consumer;
if (pthread_create (&producer, NULL, producerThreadFunction, NULL))
{
fprintf (stderr, "Error creating thread Producer\n");
return 1;
}
if (pthread_create (&consumer, NULL, consumerThreadFunction, NULL))
{
fprintf (stderr, "Error creating thread Consumer\n");
return 1;
}
if (pthread_join (producer, NULL))
{
fprintf (stderr, "Error joining thread Producer\n");
return 2;
}
if (pthread_join (consumer, NULL))
{
fprintf (stderr, "Error joining thread Consumer\n");
return 2;
}
return 0;
根据 this thread ,解决方案是使 producerThreadFunction
静态。
为什么一个类的线程函数要静态化才能在同一个类中访问?
那个函数是那个类的成员函数。为什么不能直接访问?
最佳答案
pthread_create
需要一个函数指针,而不是指向成员函数的指针。这些在 C++ 中是非常不同的类型,因为成员函数指针包含一个隐式 this
指针。实际上,静态成员函数等同于非成员函数,因此可以正常工作(注意,根据标准,这在技术上是不正确的 - 见下文)。
如果 pthread
是一个 C++ 库,它可能需要一个 std::function
(或者,在 C++11 之前,一个 boost::function
) 可以接受各种类似函数的对象;例如函数指针、成员函数指针或仿函数类。但是,由于 pthread
是一个 C 库,因此您不得不编写静态函数并手动将 this
指针作为参数传递。
你应该认真考虑使用 std::thread
(或者,在 C++11 之前,boost::thread
)而不是 pthreads
.与 pthreads
中可用的同步原语相同,例如std::condition_variable
。 std::thread
构造函数可以直接接受一个成员函数指针:
std::thread producer(&MainWindow::producerThreadFunction, this);
C 和 C++ 可能使用不同的 calling conventions .这意味着从 C 代码调用 C++ 函数是不安全的,除非它被包装在 extern "C"
block 中。 .然而,作为this answer on StackOverflow指出,C++11 7.5/4“链接规范”说:
A C language linkage is ignored in determining the language linkage of the names of class members and the function type of class member functions.
因此,不能保证按标准工作。唯一符合标准的选项是将代码放在非成员函数中,该函数在内部调用成员函数:
extern "C" {
void producerThreadFunctionWrapper(void *arg)
{
static_cast<MainWindow *>(arg)->producerThreadFunction();
}
} // extern "C"
// ...
pthread_create(&consumer, NULL, consumerThreadFunctionWrapper, this);
在实践中,我从未遇到过静态成员函数不使用 C 链接的体系结构/编译器。 question 33.2 in the C++FQA的答案幽默地表达了同样的观点:
Regarding the static-members-as-callbacks issue: if your implementation uses different binary calling conventions for C functions and C++ static member functions, call the support and inform them that their developers consume mind-altering chemicals at work.
但请注意,StackOverflow 上有一些报告(例如 in 32 bit Visual Studio)有人因此而被烧毁。最安全的选择是使用 std::thread
或为您的回调编写一个 extern "C"
包装器。
关于c++ - 为什么一个类的线程函数要静态化才能在同一个类中访问?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34036762/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!