• 大小: 226KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-06-28
  • 语言: C/C++
  • 标签: MFC  队列  

资源简介

做了一个监控系统,开始只是开了一个线程接数据并发消息调用函数进行分析,但是数据量增大的时候丢包率很大,无法达到监控的效果,于是考虑开两个线程,一个读串口数据并存到队列,一个从队列中读取数据并进行分析,好,思路是有了,可是在网上找了好久都没有相关的比较实用的介绍队列在MFC的具体用法,只有一些泛泛的文章,依葫芦画瓢写到程序中报错,于是我下定决心一旦我解决了这个问题,一定将它放到网上,希望对你们有用,谢谢关注!

资源截图

代码片段和文件信息

// MainFrm.cpp : implementation of the CMainframe class
//

#include “stdafx.h“
#include “MyComText.h“

#include “MainFrm.h“

#include “RecvThread.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CMainframe

IMPLEMENT_DYNCREATE(CMainframe CframeWnd)

BEGIN_MESSAGE_MAP(CMainframe CframeWnd)
//{{AFX_MSG_MAP(CMainframe)
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

static UINT indicators[] =
{
ID_SEPARATOR           // status line indicator
ID_INDICATOR_CAPS
ID_INDICATOR_NUM
ID_INDICATOR_SCRL
};

/////////////////////////////////////////////////////////////////////////////
// CMainframe construction/destruction

CMainframe::CMainframe()
{
// TODO: add member initialization code here

}

CMainframe::~CMainframe()
{
}

int CMainframe::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CframeWnd::OnCreate(lpCreateStruct) == -1)
return -1;

if (!m_wndToolBar.CreateEx(this TBstyle_FLAT WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!m_wndToolBar.LoadToolBar(IDR_MAINframe))
{
TRACE0(“Failed to create toolbar\n“);
return -1;      // fail to create
}

if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators
  sizeof(indicators)/sizeof(UINT)))
{
TRACE0(“Failed to create status bar\n“);
return -1;      // fail to create
}

// TODO: Delete these three lines if you don‘t want the toolbar to
//  be dockable
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
EnableDocking(CBRS_ALIGN_ANY);
DockControlBar(&m_wndToolBar);

return 0;
}

BOOL CMainframe::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CframeWnd::PreCreateWindow(cs) )
return FALSE;
// TODO: Modify the Window class or styles here by modifying
//  the CREATESTRUCT cs

return TRUE;
}

/////////////////////////////////////////////////////////////////////////////
// CMainframe diagnostics

#ifdef _DEBUG
void CMainframe::AssertValid() const
{
CframeWnd::AssertValid();
}

void CMainframe::Dump(CDumpContext& dc) const
{
CframeWnd::Dump(dc);
}

#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CMainframe message handlers





 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2401  2012-06-27 22:29  MyComText\MainFrm.cpp

     文件       1450  2012-06-27 22:29  MyComText\MainFrm.h

     文件      44800  2012-06-27 22:16  MyComText\MyComText.aps

     文件       2671  2012-06-29 22:07  MyComText\MyComText.clw

     文件       9701  2012-06-29 16:06  MyComText\MyComText.cpp

     文件       4881  2012-06-29 22:07  MyComText\MyComText.dsp

     文件        543  2012-06-27 16:44  MyComText\MyComText.dsw

     文件       1857  2012-06-29 15:06  MyComText\MyComText.h

     文件     594944  2012-06-29 22:07  MyComText\MyComText.opt

     文件        252  2012-06-29 16:18  MyComText\MyComText.plg

     文件      11956  2012-06-27 22:16  MyComText\MyComText.rc

     文件       1878  2012-06-27 16:44  MyComText\MyComTextDoc.cpp

     文件       1508  2012-06-27 16:44  MyComText\MyComTextDoc.h

     文件       2877  2012-06-27 16:44  MyComText\MyComTextView.cpp

     文件       1943  2012-06-27 16:44  MyComText\MyComTextView.h

     文件       1386  2012-06-29 22:07  MyComText\PraseThread.cpp

     文件       1343  2012-06-29 09:40  MyComText\PraseThread.h

     文件        488  2012-06-29 11:16  MyComText\public.h

     文件       4383  2012-06-27 16:44  MyComText\ReadMe.txt

     文件       5178  2012-06-29 22:07  MyComText\RecvThread.cpp

     文件       1573  2012-06-27 21:19  MyComText\RecvThread.h

     文件       1078  2012-06-27 16:44  MyComText\res\MyComText.ico

     文件        401  2012-06-27 16:44  MyComText\res\MyComText.rc2

     文件       1078  2012-06-27 16:44  MyComText\res\MyComTextDoc.ico

     文件       1558  2012-06-27 22:16  MyComText\res\Toolbar.bmp

     文件        784  2012-06-27 22:16  MyComText\resource.h

     文件        211  2012-06-27 16:44  MyComText\StdAfx.cpp

     文件       1074  2012-06-27 21:40  MyComText\StdAfx.h

     目录          0  2012-06-27 22:16  MyComText\res

     目录          0  2012-06-29 22:13  MyComText

............此处省略3个文件信息

评论

共有 条评论