代码搜索:CObject
找到约 2,165 项符合「CObject」的源代码
代码结果 2,165
www.eeworm.com/read/156803/11766047
cpp dyncreat.cpp
#include
#define RUNTIME_CLASS(class_name) (&class_name::class##class_name)
class CObject;
struct CRuntimeClass
{
char m_lpszClassName[21];
int m_nObjectSize;
CObjec
www.eeworm.com/read/257760/11913244
h showdlg.h
#pragma once
// CShowDlg 命令目标
class _declspec(dllexport) CShowDlg : public CObject
{
public:
CShowDlg();
virtual ~CShowDlg();
void ShowLogin();
// 用户合法性
bool user;
// 判断是否执行退出操
www.eeworm.com/read/256481/11997051
cpp chapter4-19.cpp
//文件夹名称:CHAPTER4-19.cpp
#include
#include
#include
class A:public CObject
{
WORD age;
public:
A(WORD x):age(x){}
WORD operator!()
{
return age
www.eeworm.com/read/256481/11997062
cpp chapter4-18.cpp
//文件夹名称:CHAPTER4-18.cpp
#include
#include
#include
class A:public CObject
{
WORD age;
public:
A(WORD x):age(x){}
WORD operator!(){return age;}
};
void
www.eeworm.com/read/150030/12323834
cpp compobj.cpp
/*----------------------------------------------
COMPOBJ.CPP -- Component Object registration
(c) Paul Yao, 1996
----------------------------------------------*/
#include
www.eeworm.com/read/251288/12354697
h baseclass.h
#include "afxtempl.h"
class CDoublePoint : public CObject // 浮点坐标类
{
public:
double x; // X坐标
double y; // Y坐标
};
class CCode : public CObject // 点、线目标类
{
public:
lon
www.eeworm.com/read/250455/12405391
h brender.h
// BRender.h: interface for the BRender class.
#ifndef _CBRENDER_H
#define _CBRENDER_H
#include "Object3d.h"
#include "ColorBuffer.h"
#include "ZBuffer.h"
class CBRender
{
public:
CBRe
www.eeworm.com/read/336939/12405632
txt memory.txt
C++编码中减少内存缺陷的方法和工具
程振林,方金云,唐志敏
(中国科学院计算技术研究所,北京 100080)
摘 要:基于C++的软件的缺陷和错误大部分都和内存相关,预防、发现、消除代码中和内存相关的缺陷,成为程序员编写、调试、维护代码时的重要任务。该文基于“面向网络海量空间信息的大型GIS”课题的工程实践,提出和总结了如何使用C++语言机制、开发环境和相关质量保证工具来预防、 ...
www.eeworm.com/read/129036/14269116
cpp addrlist.cpp
//addrlist.cpp
#include "stdafx.h"
#include "addrlist.h"
IMPLEMENT_SERIAL(CAddrlist,CObject,0)
CAddrlist::CAddrlist()
{
Name="";
Tel="";
Address="";
Birth=CTime::GetCurrentTime();
}