http://www.oschina.net/news/49207/best-php-debugging-tools
调试相关工具https://github.com/barryvdh/laravel-debugbarhttp://identicon-php.org/https://github.c...
分类:
Web程序 时间:
2014-05-07 14:16:02
阅读次数:
364
stddef.h #define offsetof(TYPE, MEMBER)
((size_t) &((TYPE *)0)->MEMBER) kernel.h /** * container_of - cast a
member of a structure out to the containi...
分类:
其他好文 时间:
2014-05-07 02:10:07
阅读次数:
410
#include //* 方法一 time_t tt =
time(NULL);//这句返回的只是一个时间cuo tm* t= localtime(&tt); printf("%d-%02d-%02d
%02d:%02d:%02d\n", t->tm_year + 1900, t->tm_mon.....
分类:
编程语言 时间:
2014-05-07 02:02:51
阅读次数:
540
Populating Next Right Pointers in Each Node
IGiven a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode
*right; TreeLin...
分类:
其他好文 时间:
2014-05-07 01:34:51
阅读次数:
407
C#部分:1.C#中集合有三种,数组类,ArrayList,和字典键值对类,一般也可以自定义集合,但是自定义集合的类型也只有这三类。2.自定义集合实现三类集合的方法:前两者需要继承CollectionBase类,Array需要使用List属性,ArrayList需要使用InnerList属性,后一种...
分类:
编程语言 时间:
2014-05-07 01:27:42
阅读次数:
396
手册链接地址:http://www.shanghai.ws/gnu/gcc_1.htmGCC中文手册GCC现在是GNU中最主要和最流行的c &
c++编译器.
gcc/g++在执行编译工作的时候,总共需要以下几步:1.预处理,生成.i的文件[预处理器cpp]2.将预处理后的文件不转换成汇编语言,生成...
分类:
其他好文 时间:
2014-05-07 01:08:57
阅读次数:
545
C语言标准写在前面:K&R C不用说。个人以为,我们平常说的标准C,指的是ANSI C,ISO
C,C89,C90。K&R C 1978年,丹尼斯?里奇(Dennis Ritchie)和布莱恩?柯林汉(Brian
Kernighan)合作出版了《C程序设计语言》的第一版。书中介绍的C语言标准也被C....
分类:
编程语言 时间:
2014-05-07 00:39:51
阅读次数:
407
1.SQL TO String :只返回一个查询结果 例如查询某条记录的总数 rs =
stmt.executeQuery(replacedCommand); if (rs != null && rs.next()) // rs
only contains one row and one colu....
分类:
数据库 时间:
2014-05-07 00:18:30
阅读次数:
600
mini2440的u-boot版本启动之后马上就会开启蜂鸣器,在办公环境下有可能会影响同事的工作,所以我考虑将其禁止掉。我使用的mini2440使用的光盘是2013年10月的版本,我在该光盘下的u-boot基础上进行修改。我仍然使用我最喜欢的vim+cscope来查看u-boot源代码,然后在u-b...
分类:
其他好文 时间:
2014-05-07 00:09:21
阅读次数:
453
1,有几位数字
#include
int main_2_1_digit(){
int n;
while(scanf("%d",&n)){
int count = 0;
if(n==0)
count = 1;
while(n){
count++;
n/=10;
}
printf("%d\n",count);
}
return 0;
}
...
分类:
其他好文 时间:
2014-05-06 21:20:19
阅读次数:
374