class classe (){
public:
int key;
static void *funct(void *context){
printf("Output: %d, ", key);
}
void Go(){
classe c = static_cast<this>(context); //<- This doesn't work, Context of this-> goes here
pthread_create(&t, NULL, &classe::funct, c);
}
};
int main(){
classe c;
c.key = 15;
c.Go();
c.key = 18;
c.Go();
}
出力は になるはずです。問題は、スローエラーOutput: 15, Output: 18,
のコンテキストを取得することです。this
誰かがこれを修正する方法を知っていますか?