问题场景代码1
#include <iostream>
#include <thread>
using namespace std;
class A {
public:
A() {
cout << "A()" << endl; }
~A() {
cout << "~A()" << endl; }
void funcA() {
cout << "A function()" << endl;
}
};
void thread_Handler(A *pa) {
std::this_thread::sleep_for(std::chrono::seconds