Hello,everry one.
I want do the following things with qt multi threads.But I do not know how to realize it?
main ()
{
.....
create thread1// do thing A
create thread 2// do thing B
do thing C.
......
}
I want to the thing C does after the A and B both have finished.When the program run,C did before A and B finish(because thread1 and thread2 have not finished), how Could I realize what I want to do?