bellcat2008bellcat2008.blog.chinaunix.net
bellcat2008
全部博文(137)
字符编码encoding(3)
makefile(0)
编译安装(8)
SHELL编程(3)
2015年(2)
2013年(1)
2012年(6)
2011年(5)
2010年(62)
2009年(61)
jjx_1996
lishuang
Bsolar
yxinxin1
zf199202
qq151984
TTL0to25
piscescy
Lorylll
分类: C/C++
2010-01-20 17:25:23
#include <iostream> using namespace std; class myfoo { private: int num; string foostr; public: myfoo(int a,std::string& str ):num(a),foostr(str) { cout << "myfoo construt : " << num << endl; }
#include <iostream> using namespace std; class myfoo { private: int num; string foostr; public: myfoo(int a,std::string& str ):num(a),
foostr(str)
{ cout << "myfoo construt : " << num << endl; }
myfoo() //myfoo aSmple;如果自己写了构造函数,那么需要列出默认构造
myfoo() //
myfoo aSmple;
如果自己写了构造函数,那么需要列出默认构造
// 函数 { } ~myfoo() { cout << "myfoo destrut:" << endl; } }; int main(int argc, char* []) { string strtmp("i_love"); myfoo g[3] = {myfoo(1,strtmp),myfoo(2,strtmp),myfoo(3,strtmp)}; return 0; }
上一篇:内存管理
下一篇:转义 \013
登录 注册