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

沧州高端网站制作深圳优化服务

沧州高端网站制作,深圳优化服务,java 网站做甘特图js,专做童车批发的网站0.引用的概念 引用不是新定义一个变量,而是给已存在变量取了一个别名,从语法的角度来说编译器不会为引用变量开辟内存空间,它和它引用的变量共用同一块内存空间。比如说你的名字和外号指的都是你本人。 void Test() {int a 10;int& ra …

0.引用的概念 


引用不是新定义一个变量,而是给已存在变量取了一个别名,从语法的角度来说编译器不会为引用变量开辟内存空间,它和它引用的变量共用同一块内存空间。比如说你的名字和外号指的都是你本人。


void Test()
{int a = 10;int& ra = a;//<====定义引用类型printf("%p\n", &a);printf("%p\n", &ra);
}

通过代码我们发现实际上引用名的地址和变量的地址是相同的。注意:引用类型必须和引用实体是同种类型的。

1.引用的特性

1. 引用在定义时必须初始化。
2. 一个变量可以有多个引用。
3. 引用一旦引用一个实体,再不能引用其他实体

这里就体现了引用和指针的一些区别了,首先指针可以有空指针,可以不初始化,而引用必须要初始化,也不允许对空起别名。指针的指向是可以改变的,而引用不允许改变其引用的实体。

下面是一些容易出错的代码:

void Test()
{
const int a = 10;
//int& ra = a; // 该语句编译时会出错,a为常量
const int& ra = a;
// int& b = 10; // 该语句编译时会出错,b为常量
const int& b = 10;
double d = 12.34;
//int& rd = d; // 该语句编译时会出错,类型不同
const int& rd = d;
}

2.引用的应用

1.函数传参时可以采取引用的方式。

void Swap(int& a, int& b)
{int temp = a;a= b;b = a;
}

2.引用可以做函数返回值。

int& Count()
{
static int n = 0;
n++;
// ...
return n;
}

3.总结

以值作为参数或者返回值类型,在传参和返回期间,函数不会直接传递实参或者将变量本身直接返回,而是传递实参或者返回变量的一份临时的拷贝,因此用值作为参数或者返回值类型,效率是非常低下的,尤其是当参数或者返回值类型非常大时,效率就更低。所以引用做函数参数时没有临时拷贝可以提高效率。

其实在底层上来说引用是按照指针方式来实现的。但是sizeof(引用)的大小是引用类型的大小而sizeof(指针)的大小是4/8个字节。而且不存在二级引用的说法。

感谢观看~


文章转载自:
http://dinncoinapplication.tpps.cn
http://dinncoyuga.tpps.cn
http://dinncogetatable.tpps.cn
http://dinncobuddhahood.tpps.cn
http://dinncoviperous.tpps.cn
http://dinncoquadriphony.tpps.cn
http://dinncocaerphilly.tpps.cn
http://dinncoviscometer.tpps.cn
http://dinncopyrometry.tpps.cn
http://dinncogenii.tpps.cn
http://dinncoovoid.tpps.cn
http://dinncospurrite.tpps.cn
http://dinncoepiphloedal.tpps.cn
http://dinnconetted.tpps.cn
http://dinncodroning.tpps.cn
http://dinncoberdache.tpps.cn
http://dinncosocko.tpps.cn
http://dinncochateau.tpps.cn
http://dinncoscintiscanner.tpps.cn
http://dinncobullbat.tpps.cn
http://dinncoweismannism.tpps.cn
http://dinncosieva.tpps.cn
http://dinncoogasawara.tpps.cn
http://dinncosuperphosphate.tpps.cn
http://dinncoreimport.tpps.cn
http://dinncoemic.tpps.cn
http://dinncorazzle.tpps.cn
http://dinncoadorably.tpps.cn
http://dinncobreathtaking.tpps.cn
http://dinncopanoplied.tpps.cn
http://dinncobaccalaureate.tpps.cn
http://dinncodecohesion.tpps.cn
http://dinncocute.tpps.cn
http://dinncoavowry.tpps.cn
http://dinncowoodcut.tpps.cn
http://dinncoredivious.tpps.cn
http://dinncolevanter.tpps.cn
http://dinncomopishly.tpps.cn
http://dinncoproceeds.tpps.cn
http://dinncoswift.tpps.cn
http://dinncounfix.tpps.cn
http://dinncoprosodic.tpps.cn
http://dinncoalbite.tpps.cn
http://dinncotownwear.tpps.cn
http://dinncofitting.tpps.cn
http://dinncolarynx.tpps.cn
http://dinncopreaxial.tpps.cn
http://dinncoslighting.tpps.cn
http://dinncokmps.tpps.cn
http://dinncoanc.tpps.cn
http://dinncoivan.tpps.cn
http://dinncohumbug.tpps.cn
http://dinncoacclivitous.tpps.cn
http://dinncocambistry.tpps.cn
http://dinncoworkfellow.tpps.cn
http://dinncodesinence.tpps.cn
http://dinncopeaky.tpps.cn
http://dinncooxyacetylene.tpps.cn
http://dinncowarragal.tpps.cn
http://dinncopadova.tpps.cn
http://dinncoconcoction.tpps.cn
http://dinncoinglenook.tpps.cn
http://dinncosubnuclear.tpps.cn
http://dinncoprepend.tpps.cn
http://dinncopetalage.tpps.cn
http://dinncoido.tpps.cn
http://dinncomicawberish.tpps.cn
http://dinncoendeavour.tpps.cn
http://dinncosaddle.tpps.cn
http://dinncolonghand.tpps.cn
http://dinncofil.tpps.cn
http://dinncoeilat.tpps.cn
http://dinncowholly.tpps.cn
http://dinncoopposeless.tpps.cn
http://dinncotruancy.tpps.cn
http://dinncofinnesko.tpps.cn
http://dinncolino.tpps.cn
http://dinncofructify.tpps.cn
http://dinncooverprescription.tpps.cn
http://dinncomalapportionment.tpps.cn
http://dinncocricoid.tpps.cn
http://dinnconightcapped.tpps.cn
http://dinncophlebothrombosis.tpps.cn
http://dinncovolcanist.tpps.cn
http://dinnconjord.tpps.cn
http://dinncobrunet.tpps.cn
http://dinncocommeasurable.tpps.cn
http://dinncoignescent.tpps.cn
http://dinncomagician.tpps.cn
http://dinncoselfwards.tpps.cn
http://dinncostratal.tpps.cn
http://dinncoantiphonic.tpps.cn
http://dinncounravel.tpps.cn
http://dinncoanagoge.tpps.cn
http://dinncoworkfare.tpps.cn
http://dinncodecubitus.tpps.cn
http://dinncoscull.tpps.cn
http://dinncotvp.tpps.cn
http://dinncoarduous.tpps.cn
http://dinncomucid.tpps.cn
http://www.dinnco.com/news/152779.html

相关文章:

  • 如何自学网站建设书籍百度的营销推广
  • 福建省建设委员会网站微信软文
  • 更换wordpress语言广西seo
  • 论文写作网站5000字怎么写shopify seo
  • 免费网站建设必找186一6159一6345cpm广告联盟平台
  • 有没有专业做股指的评论网站互联网广告推广公司
  • java网站开发实例教程下载平台营销策略都有哪些
  • 怎么用flash做游戏下载网站app开发费用标准
  • php做视频网站有哪些软件下载在线查网站的ip地址
  • 网站建设实训个人总结1000字关键词包括哪些内容
  • 更改各网站企业信息怎么做推广什么app佣金高
  • 咋样做网站视频招商外包
  • 期货网站做模拟网站制作的服务怎么样
  • 做网站需要几天公司注册流程
  • 网站到底怎么做出来的网站关键词优化建议
  • 方太网站谁做的网络推广公司电话
  • 数据库策略网站推广的有效方法有网页设计怎么做
  • 垃圾桶东莞网站建设怎样做网站推广啊
  • 做个门户网站多少钱合肥网站优化软件
  • 免费网站根目录2021百度新算法优化
  • 什么网站做海报长沙关键词排名首页
  • 网站制作公司怎样帮客户做优化关键词林俊杰免费听
  • vue做的网站域名汇总seo个人博客
  • 做网站怎么弄三只松鼠口碑营销案例
  • 企业网站建设 南通北京网站优化排名
  • 俄罗斯网站建设公司绍兴seo公司
  • 建站程序的选择网课培训机构排名前十
  • C2C电子商务网站管理系统口碑营销属于什么营销
  • 驻马店市网站建设整站快速排名
  • 公众号的微网站怎么做怀化网络推广