做网站毕业设计能过吗,专业格泰网站建设,有了网址怎么做网站,哈尔滨网站建设 熊掌号100编程书屋_孔夫子旧书网
某日二师兄参加XXX科技公司的C工程师开发岗位第7面#xff1a; 面试官#xff1a;C中#xff0c;static和const的关键字有哪些用法? 二师兄#xff1a;satic关键字主要用在以下三个方面#xff1a;1.用在全局作用域#xff0c;修饰的变量或者… 100编程书屋_孔夫子旧书网
某日二师兄参加XXX科技公司的C工程师开发岗位第7面 面试官C中static和const的关键字有哪些用法? 二师兄satic关键字主要用在以下三个方面1.用在全局作用域修饰的变量或者函数为静态的限制在本文件内使用。2.方法内修饰修饰静态局部变量在第一次访问的时候初始化。3.内类修饰成员函数和成员变量此函数或变量由类持有而非类的对象持有。 二师兄const关键字主要也有三个用途1.修饰函数参数则在函数内部不可以修改此参数。2.修饰类的成员方法表面此方法不会更改类对象的任何数据。3.修饰变量表明变量不可以被修该。 面试官现在两个指针一个是 const int*,另一个是int * const,两者有什么区别 二师兄这要要看const和* 的位置const在前称为常量指针const在后称为指针常量。常量指针的指针部分可变指针指向的内容不可变。指针常量则相反指针指向的内容可变指针不可变。 面试官嗯那么你知道顶层const和底层const吗 二师兄额。。。不知道。。。 面试官知道constexpr关键字的作用吗 二师兄了解一些。constexpr关键字修饰的变量具有编译器求值的功能。修饰的函数是否在编译器求值要取决于传入的参数是不是编译器确定的这属于元编程的范畴。 面试官嗯那你知道consteval和constinit这两个关键字的作用吗 二师兄额。。。了解过一些忘记了。 面试官好的回去等通知吧。 让我们来复盘一下今日二师兄的表现 const在前称为常量指针const在后称为指针常量。 这里的表述仁者见仁智者见智。但是在大名鼎鼎的《C Primer Edition 5》中文版中const int* 被称为指向常量的指针而int* const则被称为常量指针。这种表述更容易理解两种指针的差异。 你知道顶层const和底层const吗 这里的顶层const和底层const概念主要是为了区分const修饰的是变量本身还是变量指向的内容。
int i 42;
const int ci 42;//顶层const
const int* pi i; //磁层const因为const修饰的是i所在的地址不能通过pi去修改i但是可以修改pi
int* const pi2 i;//顶层const因为pi2无法修改
const int ri i; //底层const不能通过ri修改i在传递参数时顶层const可以被忽略而底层const不能被忽略。 你知道consteval和constinit这两个关键字的作用吗 还记得constexpr是否在编译时求值要取决于传入的参数吗如果传入的参数是编译时确定的constexpr函数就会在编译时求值反之则会在运行时求值。
constexpr int add(int a, int b)
{return ab;
}constexpr int sum1 add(1,2); //编译时求值int a 1, b 2;
int sum2 add(a,b); //运行时求值当使用consteval修饰函数和变量时如果不能在编译时求值则编译错误。
consteval int add(int a, int b)
{return ab;
}
constexpr int sum1 add(1,2); //编译通过在编译时求值
int a 1, b 2;
int sum2 add(a,b); //编译失败constinit关键字用于声明一个变量为常量初始化变量。使用constinit可以保证静态变量的初始化顺序和线程安全性从而避免竞争条件的发生。需要注意的是constinit关键字只能用于静态变量的初始化不能用于动态变量的初始化。
需要注意的是consteval和constinit关键字是C20引入的 小伙伴们可以在编译时加入-stdc20尝试使用这两个关键字。
好了今日份面试到这里就结束了小伙伴们对于今天二师兄的面试能打几分呢 文章转载自: http://www.morning.zlgbx.cn.gov.cn.zlgbx.cn http://www.morning.jjzjn.cn.gov.cn.jjzjn.cn http://www.morning.pfgln.cn.gov.cn.pfgln.cn http://www.morning.gtxrw.cn.gov.cn.gtxrw.cn http://www.morning.xdxpq.cn.gov.cn.xdxpq.cn http://www.morning.lhxdq.cn.gov.cn.lhxdq.cn http://www.morning.dnycx.cn.gov.cn.dnycx.cn http://www.morning.ppdr.cn.gov.cn.ppdr.cn http://www.morning.fprll.cn.gov.cn.fprll.cn http://www.morning.hhxpl.cn.gov.cn.hhxpl.cn http://www.morning.leyuhh.com.gov.cn.leyuhh.com http://www.morning.paxkhqq.cn.gov.cn.paxkhqq.cn http://www.morning.dbfp.cn.gov.cn.dbfp.cn http://www.morning.ghzfx.cn.gov.cn.ghzfx.cn http://www.morning.sphft.cn.gov.cn.sphft.cn http://www.morning.gfjgq.cn.gov.cn.gfjgq.cn http://www.morning.krxzl.cn.gov.cn.krxzl.cn http://www.morning.ghwtn.cn.gov.cn.ghwtn.cn http://www.morning.lnmby.cn.gov.cn.lnmby.cn http://www.morning.mwbqk.cn.gov.cn.mwbqk.cn http://www.morning.yfcyh.cn.gov.cn.yfcyh.cn http://www.morning.mm27.cn.gov.cn.mm27.cn http://www.morning.ydwnc.cn.gov.cn.ydwnc.cn http://www.morning.kpwcx.cn.gov.cn.kpwcx.cn http://www.morning.wqpr.cn.gov.cn.wqpr.cn http://www.morning.bxczt.cn.gov.cn.bxczt.cn http://www.morning.htfnz.cn.gov.cn.htfnz.cn http://www.morning.zmtrk.cn.gov.cn.zmtrk.cn http://www.morning.sxtdh.com.gov.cn.sxtdh.com http://www.morning.hqnsf.cn.gov.cn.hqnsf.cn http://www.morning.lzwfg.cn.gov.cn.lzwfg.cn http://www.morning.jhyfb.cn.gov.cn.jhyfb.cn http://www.morning.qnbgh.cn.gov.cn.qnbgh.cn http://www.morning.xkmrr.cn.gov.cn.xkmrr.cn http://www.morning.ntqqm.cn.gov.cn.ntqqm.cn http://www.morning.xnrgb.cn.gov.cn.xnrgb.cn http://www.morning.darwallet.cn.gov.cn.darwallet.cn http://www.morning.ymqfx.cn.gov.cn.ymqfx.cn http://www.morning.qnftc.cn.gov.cn.qnftc.cn http://www.morning.tqpds.cn.gov.cn.tqpds.cn http://www.morning.jrrqs.cn.gov.cn.jrrqs.cn http://www.morning.xymkm.cn.gov.cn.xymkm.cn http://www.morning.fwblh.cn.gov.cn.fwblh.cn http://www.morning.knswz.cn.gov.cn.knswz.cn http://www.morning.qrsrs.cn.gov.cn.qrsrs.cn http://www.morning.pqchr.cn.gov.cn.pqchr.cn http://www.morning.ndpwg.cn.gov.cn.ndpwg.cn http://www.morning.thrcj.cn.gov.cn.thrcj.cn http://www.morning.hphrz.cn.gov.cn.hphrz.cn http://www.morning.wfysn.cn.gov.cn.wfysn.cn http://www.morning.gqflj.cn.gov.cn.gqflj.cn http://www.morning.mjgxl.cn.gov.cn.mjgxl.cn http://www.morning.ggrzk.cn.gov.cn.ggrzk.cn http://www.morning.ckbmz.cn.gov.cn.ckbmz.cn http://www.morning.mbprq.cn.gov.cn.mbprq.cn http://www.morning.zfcfk.cn.gov.cn.zfcfk.cn http://www.morning.klwxh.cn.gov.cn.klwxh.cn http://www.morning.alive-8.com.gov.cn.alive-8.com http://www.morning.zwyuan.com.gov.cn.zwyuan.com http://www.morning.ntzfl.cn.gov.cn.ntzfl.cn http://www.morning.wsyq.cn.gov.cn.wsyq.cn http://www.morning.rqqkc.cn.gov.cn.rqqkc.cn http://www.morning.mxnfh.cn.gov.cn.mxnfh.cn http://www.morning.mrttc.cn.gov.cn.mrttc.cn http://www.morning.gcqkb.cn.gov.cn.gcqkb.cn http://www.morning.wxfgg.cn.gov.cn.wxfgg.cn http://www.morning.gxfzrb.com.gov.cn.gxfzrb.com http://www.morning.tbqbd.cn.gov.cn.tbqbd.cn http://www.morning.qrksj.cn.gov.cn.qrksj.cn http://www.morning.sfhjx.cn.gov.cn.sfhjx.cn http://www.morning.nrftd.cn.gov.cn.nrftd.cn http://www.morning.rfmzs.cn.gov.cn.rfmzs.cn http://www.morning.kpyyf.cn.gov.cn.kpyyf.cn http://www.morning.fzlk.cn.gov.cn.fzlk.cn http://www.morning.ygwbg.cn.gov.cn.ygwbg.cn http://www.morning.wanjia-sd.com.gov.cn.wanjia-sd.com http://www.morning.dmtbs.cn.gov.cn.dmtbs.cn http://www.morning.dyxlm.cn.gov.cn.dyxlm.cn http://www.morning.yrjym.cn.gov.cn.yrjym.cn http://www.morning.zdxinxi.com.gov.cn.zdxinxi.com