char*argv[]){QCoreApplicationa(argc,argv);qDebug()<<"Main thread id: "<<QThread::currentThreadId();QTimer*timer=newQTimer();timer->start(1000);Processer*processer=newProcesser();QObject::connect(timer,&QTimer::timeout,processer,&Processer::onTimeout,Qt::QueuedConnection);...