码迷,mamicode.com
首页 >  
搜索关键字:door man    ( 12203个结果
定位vc运行时库问题 依赖问题,屡试不爽的一招
用vc 菜单 文件| 打开|指定EXE或DLL,如有指定运行时库,则PE文件的资源中可以看到manifest 配置节然后据此判断EXE依赖的运行时库, 再根据编译选项调整 运行时库设置
分类:其他好文   时间:2014-05-09 17:06:52    阅读次数:318
学习笔记---C++虚函数,纯虚函数
1 .虚函数假设people是man的父类,people类和man类都定义了实函数walk()people* p = new man();p->walk();这里P执行的是people类的walk()函数。这和java语言不一样,java在这里执行的是man的walk()函数。那么C++如何实现子类...
分类:编程语言   时间:2014-05-08 09:30:01    阅读次数:349
学习笔记---C++析构函数心得
1.动态分配的对象的析构函数 1 class man{ 2 public: 3 man(){ 4 cout<<"man begin"<<endl; 5 }; 6 ~man(){ 7 cout<<"man end"<<endl; 8 } 9 ...
分类:编程语言   时间:2014-05-08 09:20:20    阅读次数:321
十一周 项目2 职员有薪水了 扩展
#include #include using namespace std; class CPerson { protected: char *m_szName; char *m_szId; int m_nSex;//0:women,1:man int m_nAge; public: CPerson(char *name,char *id,int sex,int age); voi...
分类:其他好文   时间:2014-05-08 08:15:08    阅读次数:250
ZOJ3640之简单慨率DP
Help Me Escape Time Limit: 2 Seconds      Memory Limit: 32768 KB Background     If thou doest well, shalt thou not be accepted? and if thou doest not well, sin lieth at the door. And unto the...
分类:其他好文   时间:2014-05-08 01:37:02    阅读次数:353
linux下使用c判断文件夹是否为空的小程序
/*自己写了一个判断文件夹是否为空的小代码打开文件夹的函数在man的时候要加 man 3 readdir, */#include #include #include #include #include int isdirempty(char *dirname){ /* 打开要进行匹配的文件目录 */...
分类:系统相关   时间:2014-05-08 01:31:53    阅读次数:855
十一周 项目2 职员有薪水了
#include using namespace std; class CPerson { protected: string m_szName; string m_szId; int m_nSex;//0:women,1:man int m_nAge; public: CPerson(string name,string id,int...
分类:其他好文   时间:2014-05-07 03:04:18    阅读次数:239
红帽认证RHCSA
一1、配置YUM源(自己手写,要精确到GPGK。。。。)Name=写名字中间最好有个空格不会手写yum源,查看MAN帮助:manyum.conf若YUM起不来,可去掉gpg~~或添加gpg~~~二1、调整逻辑卷减小逻辑卷:逻辑卷始终大于文件系统大小三1、创建用户账户:chage–d0natasha指定用户下次登录修?.
分类:其他好文   时间:2014-05-06 15:44:56    阅读次数:528
for dummies,Inside Out,考试用书之我见
这3个系列的书我买了不少本,虽然没有都读完,但是还是要做个阶段性的评价for dummies:即阿呆系列,外教老师Chris说那是入门的书,知识量少,我觉得自己开辟一个新的学习计划时,这个系列的书是很有帮助的,细分两个子系列all-in-one for dummies:这个系列的书厚些,通常是几本书...
分类:其他好文   时间:2014-05-05 23:16:11    阅读次数:272
ssh user@hostname "command" ;echo “aaa”$?
ssh user@hostname "command" ;echo “aaa”$?输出aaa0,表示 ssh命令成功。输出aaa2555,表示ssh连接失败。若ssh成功,命令失败,则aaa127.
分类:其他好文   时间:2014-05-03 23:26:39    阅读次数:526
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!