标题:请教这段使用临界区的代码为什么会Crash呢?
只看楼主
happyhhhh2
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2005-2-22
 问题点数:0 回复次数:0 
请教这段使用临界区的代码为什么会Crash呢?
程序代码:
莫非hash_map不允许使用带临界区的对象么?还是一旦初始化了临界区的对象就不允许复制了??


#include "stdafx.h"
#include <windows.h>
#include <hash_map>
#include <string>

using   namespace   std;
using    namespace    stdext;

class CTest
{
public:
    CTest()
    {
        memset(&m_sec, 0, sizeof(CRITICAL_SECTION));
        InitializeCriticalSection(&m_sec);
    }
    virtual ~CTest()
    {
        DeleteCriticalSection(&m_sec);
    }

protected:
    CRITICAL_SECTION m_sec;
};

int _tmain(int argc, _TCHAR* argv[])
{

    hash_map<std::string,CTest>    m_test;
    CTest objPingTest;

    m_test["test"] = objPingTest;
    return 0;
}

搜索更多相关主题的帖子: 莫非 
2011-02-11 21:10



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-332071-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.046957 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved