One of my friend came to me with an Android phone. She saild somehting wrong with the hardware of her friend's phone, and her friend are eager to back...
分类:
移动开发 时间:
2015-01-11 10:53:14
阅读次数:
1312
为了向 STL 致敬(O(∩_∩)O~), 我们模仿STL中的list的迭代器, 我们也自己实现一个MyList的迭代器, 以供遍历整个链表的所有元素:首先:Node节点需要做如下修改(注意后缀有+的代码)//链表节点
template
class Node
{
friend class MyList;
friend class ListIterator; //+
te...
分类:
其他好文 时间:
2015-01-05 21:59:00
阅读次数:
285
class my_string{ friend ostream& operator<< (ostream&,my_string&);public: my_string():data(NULL) { } my_string(const char* str) { int n = strlen(s...
分类:
其他好文 时间:
2015-01-03 17:07:13
阅读次数:
178
这个程序主要是为了学习一下工具盒类,这里使用了3个工具盒然后添加到整个界面上,
分别是:好友(good friend), 陌生人(do not remember), 黑名单(black items) 哈哈,原谅我这不咋地的英语,懂我就好。
实现图:
代码:
drawer.h
/**
* 书本:【Qt5开发及实例】
* 功能:实现一个自己的QQ界面
* 文件:drawer.cpp
...
分类:
其他好文 时间:
2015-01-02 14:45:44
阅读次数:
660
python:模块导入:from模块名import方法名变量a=100s=‘helloworld‘d=1.99b=Trueif条件:执行语句while条件:循环语句for变量inrange(起,终)#比如foriinrange(1,10)表示i从1变换到9格式化语句比如:print‘%sisyoufunnyfriendps%d‘%(‘5x9x5‘,99);函数defsayHello():print‘helloworl..
分类:
编程语言 时间:
2014-12-28 02:00:47
阅读次数:
180
《Effective C++》学习笔记——条款23:宁以 non-member 、 non-friend 替换 member 函数...
分类:
编程语言 时间:
2014-12-26 11:13:24
阅读次数:
226
A potential customer asked my about porting her application from Oracle Database to MySQL.I always try to start with the "why" (a dear friend bought m...
分类:
数据库 时间:
2014-12-23 00:04:30
阅读次数:
329
Problem Description
Pass a year learning in Hangzhou, yifenfei arrival hometown Ningbo at finally. Leave Ningbo one year, yifenfei have many people to meet. Especially a good friend Merceki.
Yifen...
分类:
编程语言 时间:
2014-12-22 16:19:55
阅读次数:
277
作者在这一节中花了大幅度的篇幅来介绍为什么最好使用non-member、non-friend函数。思路如下:场景:如果有一个class用来表示网页浏览器,那么清楚缓存及历史记录的时候,我们可能定义下面的类:class Web {public: void clearCache(); voi...
分类:
其他好文 时间:
2014-12-18 15:05:33
阅读次数:
126
Knight Moves
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 7012 Accepted Submission(s): 4238
Problem Description
A friend of you i...
分类:
其他好文 时间:
2014-12-17 09:13:29
阅读次数:
155