摘要:
/*new delete*/#include"stdafx.h"#include <stdlib.h>#include <iostream.h>#include <string.h>struct student{ student() { cout << "student::student()" << endl; } student( ch...
阅读全文
posted @ 2010-01-21 20:52
o无尘o
阅读(226)
推荐(0)
编辑
摘要:
/*类构造函数(4)*/#include"stdafx.h"#include <string.h>#include <iostream.h>class Date{public: //表达式表构造 Date( int nYear = 1980 , int nMonth = 1, int nDay = 1 ) :m_nYear(nYear),m_nMonth(nMonth),m...
阅读全文
posted @ 2010-01-21 20:32
o无尘o
阅读(196)
推荐(0)
编辑
摘要:
/*类的构造函数(3)*/ /*******************类文件***********************/ #include"stdafx.h"#include"A.h"//////////////////////////////////////////////////////////////////////// Construction/Destruction/////////...
阅读全文
posted @ 2010-01-21 20:11
o无尘o
阅读(168)
推荐(0)
编辑
摘要:
/*类的构造函数(2)*/#include"stdafx.h"#include <iostream.h>class Color{public: Color() { cout << this << " color 无参构造" << endl; } ~Color() { cout << this << " color 析构" &l...
阅读全文
posted @ 2010-01-21 19:48
o无尘o
阅读(174)
推荐(0)
编辑
摘要:
/*类的构造函数(1)*/#include"stdafx.h"#include <iostream.h>class Time{private: //私有段 int m_nHour; int m_nMin; int m_nSecond;public: //公有段 //构造函数无返回值,名称是类名 //进入到构造对象已经存在,无法销毁 Time() { init(); cout <...
阅读全文
posted @ 2010-01-21 19:33
o无尘o
阅读(196)
推荐(0)
编辑
摘要:
/************************************************************************C语言指针,难吗!!!???不难!************************************************************************//************************************...
阅读全文
posted @ 2010-01-21 16:42
o无尘o
阅读(155)
推荐(0)
编辑