青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

C++ Programmer's Cookbook

{C++ 基礎(chǔ)} {C++ 高級} {C#界面,C++核心算法} {設(shè)計模式} {C#基礎(chǔ)}

C++多線程(二)

C/C++ Runtime 多線程函數(shù)

一 簡單實例(來自codeprojct:http://www.codeproject.com/useritems/MultithreadingTutorial.asp
主線程創(chuàng)建2個線程t1和t2,創(chuàng)建時2個線程就被掛起,后來調(diào)用ResumeThread恢復2個線程,是其開始執(zhí)行,調(diào)用WaitForSingleObject等待2個線程執(zhí)行完,然后推出主線程即結(jié)束進程。

/*  file Main.cpp
 *
 *  This program is an adaptation of the code Rex Jaeschke showed in
 *  Listing 1 of his Oct 2005 C/C++ User's Journal article entitled
 *  "C++/CLI Threading: Part I".  I changed it from C++/CLI (managed)
 *  code to standard C++.
 *
 *  One hassle is the fact that C++ must employ a free (C) function
 *  or a static class member function as the thread entry function.
 *
 *  This program must be compiled with a multi-threaded C run-time
 *  (/MT for LIBCMT.LIB in a release build or /MTd for LIBCMTD.LIB
 *  in a debug build).
 *
 *                                      John Kopplin  7/2006
 
*/



#include 
<stdio.h>
#include 
<string>             // for STL string class
#include <windows.h>          // for HANDLE
#include <process.h>          // for _beginthread()

using namespace std;


class ThreadX
{
private:
  
int loopStart;
  
int loopEnd;
  
int dispFrequency;

public:
  
string threadName;

  ThreadX( 
int startValue, int endValue, int frequency )
  
{
    loopStart 
= startValue;
    loopEnd 
= endValue;
    dispFrequency 
= frequency;
  }


  
// In C++ you must employ a free (C) function or a static
  
// class member function as the thread entry-point-function.
  
// Furthermore, _beginthreadex() demands that the thread
  
// entry function signature take a single (void*) and returned
  
// an unsigned.
  static unsigned __stdcall ThreadStaticEntryPoint(void * pThis)
  
{
      ThreadX 
* pthX = (ThreadX*)pThis;   // the tricky cast
      pthX->ThreadEntryPoint();           // now call the true entry-point-function

      
// A thread terminates automatically if it completes execution,
      
// or it can terminate itself with a call to _endthread().

      
return 1;          // the thread exit code
  }


  
void ThreadEntryPoint()
  
{
     
// This is the desired entry-point-function but to get
     
// here we have to use a 2 step procedure involving
     
// the ThreadStaticEntryPoint() function.

    
for (int i = loopStart; i <= loopEnd; ++i)
    
{
      
if (i % dispFrequency == 0)
      
{
          printf( 
"%s: i = %d\n", threadName.c_str(), i );
      }

    }

    printf( 
"%s thread terminating\n", threadName.c_str() );
  }

}
;


int main()
{
    
// All processes get a primary thread automatically. This primary
    
// thread can generate additional threads.  In this program the
    
// primary thread creates 2 additional threads and all 3 threads
    
// then run simultaneously without any synchronization.  No data
    
// is shared between the threads.

    
// We instantiate an object of the ThreadX class. Next we will
    
// create a thread and specify that the thread is to begin executing
    
// the function ThreadEntryPoint() on object o1. Once started,
    
// this thread will execute until that function terminates or
    
// until the overall process terminates.

    ThreadX 
* o1 = new ThreadX( 012000 );

    
// When developing a multithreaded WIN32-based application with
    
// Visual C++, you need to use the CRT thread functions to create
    
// any threads that call CRT functions. Hence to create and terminate
    
// threads, use _beginthreadex() and _endthreadex() instead of
    
// the Win32 APIs CreateThread() and EndThread().

    
// The multithread library LIBCMT.LIB includes the _beginthread()
    
// and _endthread() functions. The _beginthread() function performs
    
// initialization without which many C run-time functions will fail.
    
// You must use _beginthread() instead of CreateThread() in C programs
    
// built with LIBCMT.LIB if you intend to call C run-time functions.

    
// Unlike the thread handle returned by _beginthread(), the thread handle
    
// returned by _beginthreadex() can be used with the synchronization APIs.

    HANDLE   hth1;
    unsigned  uiThread1ID;

    hth1 
= (HANDLE)_beginthreadex( NULL,         // security
                                   0,            // stack size
                                   ThreadX::ThreadStaticEntryPoint,
                                   o1,           
// arg list
                                   CREATE_SUSPENDED,  // so we can later call ResumeThread()
                                   &uiThread1ID );

    
if ( hth1 == 0 )
        printf(
"Failed to create thread 1\n");

    DWORD   dwExitCode;

    GetExitCodeThread( hth1, 
&dwExitCode );  // should be STILL_ACTIVE = 0x00000103 = 259
    printf( "initial thread 1 exit code = %u\n", dwExitCode );

    
// The System::Threading::Thread object in C++/CLI has a "Name" property.
    
// To create the equivalent functionality in C++ I added a public data member
    
// named threadName.

    o1
->threadName = "t1";

    ThreadX 
* o2 = new ThreadX( -100000002000 );

    HANDLE   hth2;
    unsigned  uiThread2ID;

    hth2 
= (HANDLE)_beginthreadex( NULL,         // security
                                   0,            // stack size
                                   ThreadX::ThreadStaticEntryPoint,
                                   o2,           
// arg list
                                   CREATE_SUSPENDED,  // so we can later call ResumeThread()
                                   &uiThread2ID );

    
if ( hth2 == 0 )
        printf(
"Failed to create thread 2\n");

    GetExitCodeThread( hth2, 
&dwExitCode );  // should be STILL_ACTIVE = 0x00000103 = 259
    printf( "initial thread 2 exit code = %u\n", dwExitCode );

    o2
->threadName = "t2";

    
// If we hadn't specified CREATE_SUSPENDED in the call to _beginthreadex()
    
// we wouldn't now need to call ResumeThread().

    ResumeThread( hth1 );   
// serves the purpose of Jaeschke's t1->Start()

    ResumeThread( hth2 );

    
// In C++/CLI the process continues until the last thread exits.
    
// That is, the thread's have independent lifetimes. Hence
    
// Jaeschke's original code was designed to show that the primary
    
// thread could exit and not influence the other threads.

    
// However in C++ the process terminates when the primary thread exits
    
// and when the process terminates all its threads are then terminated.
    
// Hence if you comment out the following waits, the non-primary
    
// threads will never get a chance to run.

    WaitForSingleObject( hth1, INFINITE );
    WaitForSingleObject( hth2, INFINITE );

    GetExitCodeThread( hth1, 
&dwExitCode );
    printf( 
"thread 1 exited with code %u\n", dwExitCode );

    GetExitCodeThread( hth2, 
&dwExitCode );
    printf( 
"thread 2 exited with code %u\n", dwExitCode );

    
// The handle returned by _beginthreadex() has to be closed
    
// by the caller of _beginthreadex().

    CloseHandle( hth1 );
    CloseHandle( hth2 );

    delete o1;
    o1 
= NULL;

    delete o2;
    o2 
= NULL;

    printf(
"Primary thread terminating.\n");
}


二解釋
1)如果你正在編寫C/C++代碼,決不應該調(diào)用CreateThread。相反,應該使用VisualC++運行期庫函數(shù)_beginthreadex,推出也應該使用_endthreadex。如果不使用Microsoft的VisualC++編譯器,你的編譯器供應商有它自己的CreateThred替代函數(shù)。不管這個替代函數(shù)是什么,你都必須使用。

2)因為_beginthreadex和_endthreadex是CRT線程函數(shù),所以必須注意編譯選項runtimelibaray的選擇,使用MT或MTD。

3) _beginthreadex函數(shù)的參數(shù)列表與CreateThread函數(shù)的參數(shù)列表是相同的,但是參數(shù)名和類型并不完全相同。這是因為Microsoft的C/C++運行期庫的開發(fā)小組認為,C/C++運行期函數(shù)不應該對Windows數(shù)據(jù)類型有任何依賴。_beginthreadex函數(shù)也像CreateThread那樣,返回新創(chuàng)建的線程的句柄。
下面是關(guān)于_beginthreadex的一些要點:
•每個線程均獲得由C/C++運行期庫的堆棧分配的自己的tiddata內(nèi)存結(jié)構(gòu)。(tiddata結(jié)構(gòu)位于Mtdll.h文件中的VisualC++源代碼中)。

•傳遞給_beginthreadex的線程函數(shù)的地址保存在tiddata內(nèi)存塊中。傳遞給該函數(shù)的參數(shù)也保存在該數(shù)據(jù)塊中。

•_beginthreadex確實從內(nèi)部調(diào)用CreateThread,因為這是操作系統(tǒng)了解如何創(chuàng)建新線程的唯一方法。

•當調(diào)用CreatetThread時,它被告知通過調(diào)用_threadstartex而不是pfnStartAddr來啟動執(zhí)行新線程。還有,傳遞給線程函數(shù)的參數(shù)是tiddata結(jié)構(gòu)而不是pvParam的地址。

•如果一切順利,就會像CreateThread那樣返回線程句柄。如果任何操作失敗了,便返回NULL。

4) _endthreadex的一些要點:
•C運行期庫的_getptd函數(shù)內(nèi)部調(diào)用操作系統(tǒng)的TlsGetValue函數(shù),該函數(shù)負責檢索調(diào)用線程的tiddata內(nèi)存塊的地址。

•然后該數(shù)據(jù)塊被釋放,而操作系統(tǒng)的ExitThread函數(shù)被調(diào)用,以便真正撤消該線程。當然,退出代碼要正確地設(shè)置和傳遞。

5)雖然也提供了簡化版的的_beginthread和_endthread,但是可控制性太差,所以一般不使用。

6)線程handle因為是內(nèi)核對象,所以需要在最后closehandle。

7)更多的API:HANDLE GetCurrentProcess();HANDLE GetCurrentThread();DWORD GetCurrentProcessId();DWORD GetCurrentThreadId()。DWORD SetThreadIdealProcessor(HANDLE hThread,DWORD dwIdealProcessor);BOOL SetThreadPriority(HANDLE hThread,int nPriority);BOOL SetPriorityClass(GetCurrentProcess(),  IDLE_PRIORITY_CLASS);BOOL GetThreadContext(HANDLE hThread,PCONTEXT pContext);BOOL SwitchToThread();

三注意
1)C++主線程的終止,同時也會終止所有主線程創(chuàng)建的子線程,不管子線程有沒有執(zhí)行完畢。所以上面的代碼中如果不調(diào)用WaitForSingleObject,則2個子線程t1和t2可能并沒有執(zhí)行完畢或根本沒有執(zhí)行。
2)如果某線程掛起,然后有調(diào)用WaitForSingleObject等待該線程,就會導致死鎖。所以上面的代碼如果不調(diào)用resumethread,則會死鎖。

posted on 2007-07-25 13:25 夢在天涯 閱讀(28259) 評論(1)  編輯 收藏 引用 所屬分類: CPlusPlus

評論

# re: C++多線程(二) 2007-07-25 14:43 pass86

關(guān)注  回復  更多評論   

公告

EMail:itech001#126.com

導航

統(tǒng)計

  • 隨筆 - 461
  • 文章 - 4
  • 評論 - 746
  • 引用 - 0

常用鏈接

隨筆分類

隨筆檔案

收藏夾

Blogs

c#(csharp)

C++(cpp)

Enlish

Forums(bbs)

My self

Often go

Useful Webs

Xml/Uml/html

搜索

  •  

積分與排名

  • 積分 - 1816509
  • 排名 - 5

最新評論

閱讀排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
      <noscript id="pjuwb"></noscript>
            <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
              <dd id="pjuwb"></dd>
              <abbr id="pjuwb"></abbr>
              久久乐国产精品| 国内成人精品2018免费看 | 国产伦精品一区二区三区免费迷| 性色一区二区| 麻豆av一区二区三区| 亚洲制服欧美中文字幕中文字幕| 午夜免费日韩视频| 91久久综合亚洲鲁鲁五月天| 亚洲欧美国产另类| 亚洲人成人77777线观看| 欧美精品不卡| 麻豆成人在线观看| 国产精品草莓在线免费观看| 欧美成人午夜77777| 国产精品久久午夜夜伦鲁鲁| 亚洲高清资源综合久久精品| 亚洲一区二区三区四区中文| 亚洲日本欧美日韩高观看| 久久精品国产99国产精品| 99国内精品久久| 久久午夜电影网| 久久视频精品在线| 欧美国产日韩精品免费观看| 免费亚洲一区二区| 精品999网站| 午夜在线视频一区二区区别| 欧美国产先锋| 亚洲激情网站| 美女诱惑一区| 亚洲欧美成人精品| 亚洲国产一成人久久精品| 在线观看亚洲a| 久久久久久国产精品mv| 中文国产一区| 午夜精品久久久| 国产日韩在线不卡| 亚洲欧美亚洲| 久久久亚洲综合| 亚洲无限乱码一二三四麻| 欧美日韩伊人| 中文欧美在线视频| 欧美激情一区| 老司机成人在线视频| 亚洲欧美美女| 国产一区二区按摩在线观看| 久久精品国产2020观看福利| 日韩视频一区二区在线观看| 在线一区观看| 国产日韩精品视频一区| 久久激情中文| 亚洲欧美电影在线观看| 亚洲精品精选| 欧美一区不卡| 国产综合色产| 国产精品性做久久久久久| 久久国产黑丝| 欧美一区激情| 亚洲精品久久久蜜桃| 欧美韩日一区二区三区| 久久久久久色| 久久久综合网| 久久久久综合网| 久久蜜桃资源一区二区老牛| 香蕉乱码成人久久天堂爱免费| 亚洲少妇自拍| 在线精品福利| 国产精品久久久久久福利一牛影视| 欧美亚洲视频一区二区| 午夜精品一区二区三区在线播放| 亚洲午夜一区| 亚洲国产美女| 亚洲福利视频一区二区| 亚洲电影第1页| 最新69国产成人精品视频免费| 亚洲欧美综合国产精品一区| 亚洲一区二区不卡免费| 亚洲视频中文| 欧美一区二区三区四区视频| 欧美一区二区三区在线观看视频| 午夜在线电影亚洲一区| 久久久久久久久久久久久9999| 亚洲精品美女久久久久| 99视频精品在线| 国产一区二区三区的电影| 国产综合色在线| 在线国产亚洲欧美| 日韩午夜av在线| 亚洲欧美日韩高清| 久久精品国产欧美亚洲人人爽| 亚洲视屏在线播放| 欧美一级大片在线观看| 久久在线免费| 亚洲国产精品久久久久秋霞影院| 亚洲精品乱码久久久久久| 亚洲午夜羞羞片| 久久久久国产一区二区三区四区| 欧美99在线视频观看| 久久久久久久综合日本| 男女av一区三区二区色多| 欧美精品日韩一本| 国产麻豆精品在线观看| 在线观看亚洲精品| 亚洲一本大道在线| 久久久爽爽爽美女图片| 亚洲国产另类久久久精品极度| 99re6这里只有精品视频在线观看| 亚洲欧美另类国产| 美日韩丰满少妇在线观看| 国产精品mm| 在线观看一区视频| 亚洲欧美日韩在线| 免费在线观看一区二区| 久久国产精品免费一区| 欧美风情在线观看| 亚洲天堂免费在线观看视频| 久久人人97超碰人人澡爱香蕉| 欧美精品成人在线| 黄色免费成人| 娇妻被交换粗又大又硬视频欧美| 99精品视频免费全部在线| 欧美在线观看一二区| 最近中文字幕日韩精品 | 最新亚洲一区| 销魂美女一区二区三区视频在线| 欧美成人午夜激情| 午夜精品久久久久99热蜜桃导演| 欧美1区视频| 国模精品娜娜一二三区| 亚洲视频你懂的| 亚洲国产成人在线视频| 欧美在线一区二区| 久久久久久久一区二区| 国产精品国产三级国产专区53| 亚洲成色www久久网站| 午夜在线不卡| 日韩视频一区二区| 免费成人网www| 国产在线拍偷自揄拍精品| 亚洲一区二区三区精品视频 | 性久久久久久| 欧美午夜精品久久久久久超碰| 亚洲福利视频免费观看| 亚洲精品极品| 久热精品视频在线观看| 亚洲综合精品自拍| 国产精品乱人伦中文| 亚洲视频视频在线| 99国产精品国产精品久久| 亚洲女同精品视频| 国产精品国产三级国产专播精品人| 99精品欧美一区二区三区综合在线| 久久人人爽人人| 欧美一区二区三区在线播放| 国产精品一区久久久久| 亚洲欧美另类在线| 一区二区三区四区国产| 久久九九热免费视频| 欧美激情亚洲国产| 亚洲精品欧美精品| 亚洲国产精品ⅴa在线观看| 久久人人97超碰人人澡爱香蕉| 黑人巨大精品欧美一区二区小视频| 欧美综合激情网| 亚洲国产一区二区三区在线播 | 亚洲激情一区二区| 亚洲国产aⅴ天堂久久| 免费久久99精品国产自在现线 | 一区二区成人精品| 亚洲老司机av| 久久久久国色av免费观看性色| 国产一区二区精品久久| 久久免费国产| 裸体一区二区三区| 99视频一区| 亚洲一区二区三区视频| 国产一区二区三区久久悠悠色av | 亚洲精品久久久久久久久久久久久| 欧美伦理91| 亚洲高清视频的网址| 欧美二区在线播放| 欧美日本韩国一区| 亚洲一区999| 欧美影院久久久| 激情婷婷亚洲| 亚洲人成欧美中文字幕| 国产精品日韩一区二区| 麻豆av一区二区三区| 欧美人成在线| 久久大逼视频| 欧美1区3d| 欧美亚洲一区三区| 蜜桃久久av一区| 亚洲一级电影| 久久久99爱| 亚洲天堂av高清| 久久精品国产77777蜜臀| 亚洲精品一区二区三区在线观看 | 欧美高清在线一区| 国产精品国产成人国产三级| 久久久夜夜夜|