摘要:
//构造函数并不是由用户来调用的,而是在建立对象的同时自动执行;并且构造函数的名称与类的名称必须是一致的,而不是由用户任意命名的.#include "stdafx.h"#include <iostream>using namespace std;class CPen{public: CPen(); //默认构造函数的声明 CPen(int size); //构造函数的声明 int GetSize(); int SetSize(int size); void Write();private: int m_size;};CPen::CPen() //默认构造函数.. 阅读全文
摘要:
下面以描述"用户"为例,介绍类的声明.为了简化类的声明,我们认为"用户"具有名称和密码两个属性,并且具有实现登录功能.class CUser //声明一个类{public: char m_Username[128]; //定义数据成员 char m_Password[128]; bool Login() //定义方法 { if(strcmp(m_Username, "MR")==0 && strcmp(m_Password, "KJ")==0) { cout << "登录成功& 阅读全文
摘要:
#include <iostream.h>#include <io.h>#include <string.h>#include "stdlib.h"const int MAXLEN = 1024; //定义最大目录长度unsigned long FILECOUNT = 0; //记录文件数量void ListDir(const char* pchData){ _finddata_t fdata; //定义文件查找结构对象 long done; char tempdir[MAXLEN] = {0}; //定义一个临时字符数组 strcat( 阅读全文