静态区:保存自动全局变量和static变量(包括static全局和局部变量)...
分类:
其他好文 时间:
2015-03-03 11:46:37
阅读次数:
123
结构体成员指针初始化
不可以正确运行的初始化方式(1):
#include
#include
#include
//#include "a.h"
//char a[100];
struct stu
{
char* name;
int num;
}*pst,st;
void init_pst()
{
pst = (struct stu *)malloc(size...
分类:
其他好文 时间:
2015-03-03 11:45:41
阅读次数:
175
SVM materialThose material work for svm beginner, material concerned with newly and learning theory excluded. if you are willing to study in a deep wa...
分类:
其他好文 时间:
2015-03-03 09:53:33
阅读次数:
112
韩洋原创作品转载请注明出处《Linux内核分析》MOOC课程http://mooc.study.163.com/course/USTC-1000029000写在开始,本文为因为参加MOOC相关课程而写的作业,如有疏漏,还请指出。选了一门Linux内核分析课程,因为阅读内核代码中或多或少要涉及到At&...
分类:
编程语言 时间:
2015-03-03 01:06:34
阅读次数:
311
源:http://www.silverlightchina.net/html/HTML_5/study/2012/0326/14828.htmlsave()和restore()方法是绘制复杂图形必不可少的方法.它们分别是用来 保存和恢复 canvas 状态的,都没有参数。 Canvas 状态是以堆(...
分类:
Web程序 时间:
2015-03-02 12:50:02
阅读次数:
141
原文地址:http://javaz.cn/site/javaz/site_study/info/2015/21984.html
项目地址:http://www.freeteam.cn/
链接管理
链接主要分为下拉、图片、文字。每种链接都包括链接分类和链接项目管理。
由于操作方法类似,此处以下拉链接为例进行说明,其它链接种类参考下拉链接即可。
1. 下拉链接...
分类:
编程语言 时间:
2015-03-02 09:33:26
阅读次数:
153
刘子健
原创作品转载请注明出处
《Linux内核分析》MOOC课程http://mooc.study.163.com/course/USTC-1000029000
对一下代码进行反汇编分析:
int g(int x)
{
return x + 42;
}
int f(int x)
{
return g(x);
}
int main(void)
{
...
分类:
其他好文 时间:
2015-03-01 14:29:59
阅读次数:
170
指针形式和下标形式
A> char *p = "abcdef";//定义一个字符串,用一个指针指向这个字符串
B>char a[] = "123456";//定义一个字符数组 a 是数组首元素的首地址,而不是数组的首地址
在上面的A>定义中,假如我们要取出c这个字符,那么有以下两种方法:
指针的形式:*(p+3)
下标的形式:p[3]
两种方式,我们都可以这个进行理解:
编译器首先...
分类:
其他好文 时间:
2015-03-01 00:24:39
阅读次数:
176
note Qt study,about Qt5 guide,this is i need!!
分类:
其他好文 时间:
2015-02-28 00:14:28
阅读次数:
127
Statistical approaches to randomised controlled trial analysisThe statistical approach used in the design and analysis of the vast majority of clinica...
分类:
其他好文 时间:
2015-02-27 09:56:17
阅读次数:
176