【扩展知识4】
1. 野指针
2. %p的使用
( 1 )野指针
定义:野指针”不是NULL指针,是指向“垃圾”内存的指针。[重量级危险人物]
野指针的成因:
1. 指针变量定义时没有初始化。
2. 指针变量free后没有置于NULL。
3. 指针的使用超出范围
程序举例:...
分类:
其他好文 时间:
2014-11-22 12:08:58
阅读次数:
165
相关结构:http://lxr.free-electrons.com/source/include/linux/poll.h?v=3.8 33 /* 34 * Do not touch the structure directly, use the access functions 35 * p.....
分类:
其他好文 时间:
2014-11-21 15:47:04
阅读次数:
137
new,malloc,GlobalAlloc详解
相同点:都可用于申请动态内存和释放内存
不同点:
(1)操作对象有所不同。
malloc与free是C++/C
语言的标准库函数,new/delete
是C++的运算符。对于非内部数据类的对象而言,光用maloc/free
无法满足动态对象的要求。对象在创建的同时要自动执行构造函数,对象消亡之前要自动执行析构函数。由于mallo...
分类:
其他好文 时间:
2014-11-20 20:25:03
阅读次数:
296
/*The MIT License (MIT)Copyright (c) Permission is hereby granted, free of charge, to any person obtaining a copyof this software and associated docu....
分类:
编程语言 时间:
2014-11-19 17:50:40
阅读次数:
258
If you need any game cheat tool at free of cost without doing survey and other stuffs then directly get download from crazygamehacks.com .we provide y...
分类:
其他好文 时间:
2014-11-19 13:58:54
阅读次数:
508
// Copyright (c) 2008 CodeToast.com and Nicholas Brookins//This code is free to use in any application for any use if this notice is left intact.//Jus...
商业协作和项目管理平台-TeamLab网络视频会议软件-VMukti驰骋工作流程引擎-ccflow【免费】正则表达式测试工具-Regex-TesterWindows-Phone-7-SDKExcel-读写组件-ExcelLibrary.NET集成开发环境-MonoDevelop电话软交换机-Free...
分类:
Windows程序 时间:
2014-11-18 00:11:37
阅读次数:
2775
继续验证使用索引时,cbclatch相关情况,使用solaris中的dtrace编写dtrace脚本morecbc.d
#!/usr/sbin/dtrace-s-n
char*memnr;
intlatchaddr;
dtrace:::BEGIN
{
i=1;
latchaddr=0;
}
pid$1::sskgslcas:entry
{
memnr=copyin(arg0,12);
latchaddr=arg0;
printf("[%2x%2x%2x%2x|%2..
分类:
其他好文 时间:
2014-11-17 19:41:57
阅读次数:
321
在计算机科学中,若一个形式文法G = (N, Σ, P, S) 的产生式规则都取如下的形式:V->w,则称之为上下文无关文法(英语:context-free grammar,缩写为CFG),其中 V∈N ,w∈(N∪Σ)* 。上下文无关文法取名为“上下文无关”的原因就是因为字符 V 总可以被字串 w...
分类:
其他好文 时间:
2014-11-17 17:11:47
阅读次数:
160
#include<stdio.h>#include<malloc.h>voidf(int*q){ *q=100;// free(q);//把q指向的内存释放掉}intmain(void){ int*p=(int*)malloc(sizeof(int));//sizeof的返回值是int所占的字节数4,并将4个字节中第一个字节的地址赋值给p *p=10; printf("%d\n",*p);//结果是:1..
分类:
其他好文 时间:
2014-11-17 06:59:57
阅读次数:
129