当前位置:网站首页>理解:野指针,空指针,失效指针。
理解:野指针,空指针,失效指针。
2022-08-02 14:13:00 【白U】
- 野指针就是没有被初始化的指针。野指针的值是一个随机值。
(不能被解引用,因为解引用之后,野指针没有指向任何的地址空间,如果指向的堆区,很可能会发生
因此在定义指针的是时候,需要将指针初始化为空指针,或者初始化为已经定义变量的地址。
接下里就可以通过if语句来判别这个指针是否有效。随机值无法解引用进行判断。
在以后的函数定义形参时,如果形参为指针,一定要对其判空!!!!!if (s != NULL)
,因为我们对空指针无法定义。一定要对指针初始化 (不论是全局/局部指针,全局/局部static指针)
- 失效指针:
产生:
int PrintAr()
{
}
int* fun() //整型指针类型 返回地址
{
int a = 100;
int* p = &a;
return p;
return *p; // 人家要的是地址,才能解引用,
} // 这里*p就相当于a 是一个变量
int main()
{
int* ip = NULL;
ip = fun();
PrintAr();
if(ip != NULL)
printf("ip %p ==>%x\n", ip, *ip);
}
文字描述,当在fun()函数中,指针p指向a的地址,函数结束,返回的是a的地址,同时fun()所在空间被回收,因此无法打印出*ip的值,(即便打印出,也只是空间暂时没有受到干扰)因此ip指针也就相当于一个失效指针。
因此,不要尝试修改失效指针,因为当前的空间已经变化,修改的可能是其他函数或变量的值。
问:如何返回变量的地址。
static
int a = 10; //数据区,不受函数生存期的影响。- 全局区变量也可以。
- 返回的变量在主函数中(生存期变长)
如:
int* fun(int* ip)
{
*ip = 100;
return ip;
}
int main()
{
///a的生存期不受函数影响
int a = 10; //!!!!!!!!!!!!!!!!!!!
int* p = &a;
int* s = NULL;
s = fun(p);
printf("%d\n", *s);
}
边栏推荐
- How does ns3 solve cross reference issue
- Codeforces Round #624 (Div. 3)
- Introduction to MATLAB drawing functions ezplot explanation
- 线性结构,顺序结构
- 1. Development community homepage, register
- Codeforces Round #605 (Div. 3)
- Detailed explanation of MATLAB drawing function plot
- C#高级教程
- Manifest merger failed : Attribute [email protected] value=
- 计算机导论——数据库
猜你喜欢
3. User upload avatar
Detailed explanation of MATLAB drawing function fplot
泰伯效应的建模
EastWave应用:光场与石墨烯和特异介质相互作用的研究
第三十章:普通树的存储和遍历
【离散化+前缀和】Acwing802. 区间和
audio console无法连接到RPC服务
STM32LL library - USART interrupt to receive variable length information
Open the door of electricity "Circuit" (1): voltage, current, reference direction
剑指offer:合并两个排序的链表
随机推荐
Unity-Post Processing
软件测试基础知识(背)
许多代码……
2.登录退出,登录状态检查,验证码
Unity-3D数学
Detailed introduction to drawing complex surfaces using the plot_surface command
Qt | 定时器的使用 QTimer
5. Transaction management
3. User upload avatar
分布式一致性协议-Gossip
[System Design and Implementation] Flink-based distracted driving prediction and data analysis system
Evaluate multipath BBR congestion control on ns3
Unity插件-NGUI
px和em和rem的区别
Qt | 读取文件内容并删除文件 QFile
Introduction to in-order traversal (non-recursive, recursive) after binary tree traversal
创建系统还原点及恢复
Project: combing the database table
6. Unified logging
我的2021回忆录