2
Thread C ++ che utilizza l'oggetto funzione, come vengono chiamati più distruttori ma non i costruttori?
Di seguito trovi lo snippet di codice: class tFunc{ int x; public: tFunc(){ cout<<"Constructed : "<<this<<endl; x = 1; } ~tFunc(){ cout<<"Destroyed : "<<this<<endl; } void operator()(){ x += 10; cout<<"Thread running at : "<<x<<endl; } int getX(){ return x; } }; int main() { tFunc t; thread t1(t); if(t1.joinable()) …