使用ClassWizard产生一个UI线程:  
Class  CReaderThread  :  public  CWinThread  
 
启动线程:  
CReaderThread*  pThread;  
pThread  =  (CReaderThread*)AfxBeginThread  
                 (  RUNTIME_CLASS(CReaderThread)  );  
 
请问如何使该线程终止?