以下语句哪个判断是错误的? int& func_int_r(vo...
发布于 2022-03-02 17:08:25
以下语句哪个判断是错误的?
int& func_int_r(void) int&& func_int_rr(void) int func_int(void) const int&& func_cint_rr(void) const int func_cint(void) int x=0 decltype(func_int_r()) a1=x //1.判断a1是int&类型 decltype(func_int_rr()) b1=0 //2.判断b1是int&&类型 decltype(func_int()) c1=0 //3.判断c1是int类型 decltype(func_cint_rr()) b2=x //4.判断b2是const int&&类型 decltype(func_cint) c2=x //5.判断c2是const int类型
登录后免费查看答案
关注者
0
被浏览
17