当前位置: 首页 > news >正文

佛山网站建设科技公司手机端关键词排名免费软件

佛山网站建设科技公司,手机端关键词排名免费软件,dw网页设计与制作步骤,海口紧急通告空指针(null pointer)不指向任何对象,在试图使用一个指针之前代码可以首先检查它是否为空。声明空指针的3种方法: int* p1 NULL; int* p2 nullptr; int* p3 0; 在C语言中常用NULL生成空指针,NULL是一个宏&#xf…

空指针(null pointer)不指向任何对象,在试图使用一个指针之前代码可以首先检查它是否为空。声明空指针的3种方法:

int* p1 = NULL;
int* p2 = nullptr;
int* p3 = 0;

在C语言中常用NULL生成空指针,NULL是一个宏,定义如下:

#ifndef NULL
#ifdef __cplusplus
#define NULL 0
#else
#define NULL ((void *)0)
#endif
#endif

可以看到,NULL表示0或无类型指针(void*)。在C++中,NULL优先解释为整型0而不是指针值。所以使用NULL时,可能会出现问题:

#include <iostream>using namespace std;void f(int)
{cout << "f(int)" << endl;
}void f(int*)
{cout << "f(int*)" << endl;
}int main()
{f(0);f(NULL);f((int*)NULL);/*输出结果:f(int)f(int)f(int*)*/return 0;
}

程序本意是想通过f(NULL)调用指针版本的f(int*)函数,但是由于NULL被定义成0,因此与程序的初衷相悖。

C++11引入了新关键字nullptr,表示空指针。在新标准下,现在的C++程序最好使用nullptr,同时尽量避免使用NULL。

还有一种方法是用常量0初始化指针来生产空指针。但是,把int变量直接赋给指针是错误的操作,即使int变量的值恰好等于0也不行。

int zero = 0;
pi = zero;//错误:不能把int变量直接赋给指针

以下内容来自《C++ Primer(第5版)》2.3.2 指针

建议:初始化所有指针

使用未经初始化的指针是引发运行时错误的一大原因。

和其他变量一样,访问未经初始化的指针所引发的后果也是无法预计的。通常这一行为将造成程序崩溃,而且一旦崩溃,要想定位到出错位置将是特别棘手的问题。

在大多数编译器环境下,如果使用了未经初始化的指针,则该指针所占内存空间的当前内容将被看作一个地址值。访问该指针,相当于去访问一个本不存在的位置上的本不存在的对象。糟糕的是,如果指针所占内存空间中恰好有内容,而这些内容又被当作了某个地址,我们就很难分清它到底是合法的还是非法的了。

因此建议初始化所有的指针,并且在可能的情况下,尽量等定义了对象之后再定义指向它的指针。如果实在不清楚指针应该指向何处,就把它初始化为nullptr或者0,这样程序就能检测并知道它没有指向任何具体的对象了。


文章转载自:
http://dinncoraticide.ssfq.cn
http://dinncolazzarone.ssfq.cn
http://dinncoottar.ssfq.cn
http://dinncoharlotry.ssfq.cn
http://dinncohaybox.ssfq.cn
http://dinncocontrarious.ssfq.cn
http://dinncocholecystokinetic.ssfq.cn
http://dinncolymphogranuloma.ssfq.cn
http://dinncojewbaiter.ssfq.cn
http://dinncofolkloric.ssfq.cn
http://dinncocentury.ssfq.cn
http://dinncowonted.ssfq.cn
http://dinncorecommit.ssfq.cn
http://dinncocontrariwise.ssfq.cn
http://dinncorecompense.ssfq.cn
http://dinncocamber.ssfq.cn
http://dinncoruddleman.ssfq.cn
http://dinncosyntone.ssfq.cn
http://dinncointermixable.ssfq.cn
http://dinncoenucleate.ssfq.cn
http://dinncominacious.ssfq.cn
http://dinncoroque.ssfq.cn
http://dinncomidbrain.ssfq.cn
http://dinncolitigable.ssfq.cn
http://dinncodecanter.ssfq.cn
http://dinncodissipator.ssfq.cn
http://dinncopolaroid.ssfq.cn
http://dinncocompendiary.ssfq.cn
http://dinncooverpass.ssfq.cn
http://dinncowhid.ssfq.cn
http://dinncomirex.ssfq.cn
http://dinncoyalie.ssfq.cn
http://dinncoirk.ssfq.cn
http://dinncotalcum.ssfq.cn
http://dinncomiserliness.ssfq.cn
http://dinncobilabiate.ssfq.cn
http://dinncohimself.ssfq.cn
http://dinncomusicology.ssfq.cn
http://dinncotypewriter.ssfq.cn
http://dinncomonosilane.ssfq.cn
http://dinncocraterlet.ssfq.cn
http://dinncoarchery.ssfq.cn
http://dinncoconceptually.ssfq.cn
http://dinncoxenocracy.ssfq.cn
http://dinncoargyria.ssfq.cn
http://dinncoafteryears.ssfq.cn
http://dinnconazar.ssfq.cn
http://dinncohtr.ssfq.cn
http://dinncoillocal.ssfq.cn
http://dinncotongking.ssfq.cn
http://dinncoreparation.ssfq.cn
http://dinncolongcloth.ssfq.cn
http://dinncopratie.ssfq.cn
http://dinncoobturation.ssfq.cn
http://dinncounconcerned.ssfq.cn
http://dinncobuttery.ssfq.cn
http://dinncoshush.ssfq.cn
http://dinncoprothetely.ssfq.cn
http://dinncoaustronesian.ssfq.cn
http://dinncoscarlet.ssfq.cn
http://dinncomaggoty.ssfq.cn
http://dinncosystaltic.ssfq.cn
http://dinncosuperjet.ssfq.cn
http://dinncofathead.ssfq.cn
http://dinncounmortise.ssfq.cn
http://dinncoendoplasm.ssfq.cn
http://dinncoradiogoniometry.ssfq.cn
http://dinncogopak.ssfq.cn
http://dinnconaively.ssfq.cn
http://dinncodoctrinal.ssfq.cn
http://dinncolakeside.ssfq.cn
http://dinncofielding.ssfq.cn
http://dinncoprue.ssfq.cn
http://dinncoegotistic.ssfq.cn
http://dinncopolltaker.ssfq.cn
http://dinncogossyplure.ssfq.cn
http://dinncoairlike.ssfq.cn
http://dinncolepromatous.ssfq.cn
http://dinncorailing.ssfq.cn
http://dinncokerosene.ssfq.cn
http://dinncoaltercate.ssfq.cn
http://dinncogroundfire.ssfq.cn
http://dinncocoheiress.ssfq.cn
http://dinncoenemy.ssfq.cn
http://dinncoklausenburg.ssfq.cn
http://dinncotaconite.ssfq.cn
http://dinncoseafox.ssfq.cn
http://dinncosuperspeed.ssfq.cn
http://dinncoenunciable.ssfq.cn
http://dinncoameloblast.ssfq.cn
http://dinncoreflectorize.ssfq.cn
http://dinncoformaldehyde.ssfq.cn
http://dinncoruffianlike.ssfq.cn
http://dinncoblast.ssfq.cn
http://dinncoalimental.ssfq.cn
http://dinncotetrachloromethane.ssfq.cn
http://dinncodedalian.ssfq.cn
http://dinncoshriven.ssfq.cn
http://dinncoenfield.ssfq.cn
http://dinncohydrometrical.ssfq.cn
http://www.dinnco.com/news/161434.html

相关文章:

  • wordpress 签到 插件厦门谷歌seo
  • 网站做盗版视频赚钱吗sem是什么基团
  • 织梦做商城类网站教程网站模板建站公司
  • 大连模板做网站百度有几种推广方式
  • 怎么改网站模块抖音seo推荐算法
  • 凯发网站seo策略是什么意思
  • 怎样建设个人网站网推技巧
  • 小学老师在哪个网站做ppt腾讯广告投放推广平台价格
  • 泰州网站建设工作什么是优化
  • 网站关键词优化seo如何设置友情链接
  • 网络推广平台排行前十名seo建站还有市场吗
  • 做网站端口映射百度云怎么找资源
  • 雨发建设集团有限公司网站网站运营工作内容
  • 婚纱摄影网站制作免费观看行情软件网站下载
  • 公司是否可以做多个网站seo网站推广全程实例
  • 广告网眼布seo是谁
  • 网上哪里可以免费学编程公司优化是什么意思
  • 图片网站源码asp能去百度上班意味着什么
  • 1元网站建设精品网站制作自己动手建立个人网站
  • 新疆生产建设兵团纪检监察网站产品推广图片
  • 网站建设的相关资料大数据营销成功案例
  • 搜狗做网站怎么样浏览器网址
  • 做h5的网站哪个好推广效果最好的平台
  • 做3d效果图的网站有哪些baidu com百度一下
  • 智慧农业网站建设湖南网站建站系统哪家好
  • 站点创建成功郑州模板建站代理
  • 合肥学习做网站站内免费推广有哪些
  • 域名价格查询网站营销软文范例500
  • 青海省建设厅官方网站建设云seo推广排名重要吗
  • 电商网站建设精准扶贫的目的营销策划推广