C/C++
文章平均质量分 67
booksky508
无
展开
-
如何优雅地关闭一个socket
如何优雅地关闭一个socket2006年11月09日 16:39 最近在windows编程时需要考虑到“如何优雅地关闭一个socket”,查阅了一些资料,现将查到的相关资料做个汇编,希望能对后来者有所帮助(比较懒,所以英文资料没有翻译:-))1. 关闭Socket时究竟做了什么 关闭socket分为主动关闭(Active closure)和被动关闭(P转载 2008-04-06 12:34:00 · 2566 阅读 · 0 评论 -
C++运算符重载
#include "stdafx.h"#include using namespace std;namespace StudyTest1{ //运算符重载测试 class Test { public: //构造函数 Test(int a, int b, int c) { aa = a; bb = b; cc =原创 2009-01-20 11:25:00 · 707 阅读 · 0 评论 -
乒乓球单打比赛程序模拟
// pingpangcompete.cpp : Defines the entry point for the console application. //VS2008 //编程题目 //乒乓球单打比赛程序模拟。比赛的双方简称A和B,他们的比赛规则采用: //1,比赛胜负采用7局4胜制:谁先取得4局胜利就赢得比赛; //2,每局比分采用11分制: //原创 2008-11-14 10:55:00 · 2287 阅读 · 2 评论 -
GetBuffer 与 ReleaseBuffer
LPCWSTR GetBuffer( int nMinBufLength) throw (CHeap_Exception);ParametersnMinBufLength The minimum size of the character buffer in characters. This value does not include space for a原创 2008-11-13 16:18:00 · 398 阅读 · 0 评论 -
编程实现火车站售票程序
// 环境VS2003 // ///////////////////////////////////////////////////////////////////////////////// //编写程序实现火车站售票程序(以一节车厢为例)。 //下图(图1)是火车车厢内座位的布局,座位号从1到80; //其中1,2, 5,6位于一个间隔内,3、4、7、8也是一个间隔原创 2008-10-08 15:05:00 · 1756 阅读 · 1 评论 -
Dialog及ActiveX控件中Dialog上的Button如何显示Tooltip?
6.Dialog及ActiveX控件中Dialog上的Button如何显示Tooltip? 环境:VS2003前提:自定义button类 class MyButton : public CBitmapButton假设自定义button类名为:mybutton 可以在类中加入成员变量 CToolTipCtrl m_ToolTip; 然后重载 Pre原创 2008-06-25 16:55:00 · 993 阅读 · 2 评论 -
C++学习笔记2
4.///////////////////////////////////////////////////////////////////////////////////4.BitBlt函数介绍可用于使用bitmap美化按钮,可以从一个bitmap文件中截出一块覆盖到目标button上。BitBlt函数从称为「来源」的设备内容中将一个矩形区的图素传输到称为「目的(destination原创 2008-06-23 18:42:00 · 486 阅读 · 0 评论 -
调用com组件时include xxx_i.c文件和xxx.h文件出现重复定义错误解决办法
自定义一个com 组件dll, 引用此com时加入头文件: #include "../xxx/xxx.h" #include "../xxx/xxx_i.c" 结果提示错误: xxx error LNK2005: _CLSID_xxx already defined in xxx.obj............................./////////////原创 2008-06-20 16:45:00 · 701 阅读 · 0 评论 -
Visual Studio 2003 VC7.1 部分问题集---学习笔记
Visual Studio 2003 VC7.1 部分问题集---学习笔记1.////////////////////////////////////////////////////////////////////////////环境:Visual Studio 2003 CString strFilter = L"video File (*.avi)|*.avi|"原创 2008-06-17 20:01:00 · 567 阅读 · 0 评论