由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - clarify
相关主题
how to change a variable's value in a const functionC++ software engineer 3 years expectation
关于const和volatile修饰变量或指针的问题zhaoce: 我感觉python很有前途呀
question about const reference各种程序语言都发展这么久了,还是没有统一的轮子
[合集] static const代替define的performance tradeoff在哪里?Web开发更是个社会学命题,技术大们洗洗睡吧...
const_cast问题统计跟计算机在很多领域都融合了。
function declaration第一门语言就应该学JS
i +++ jjava里 不用charAt 直接用[] 可以么?
一道面试题一帮破码工吵啥吵呀?
相关话题的讨论汇总
话题: const话题: int话题: clarify话题: two话题: do
进入Programming版参与讨论
1 (共1页)
j*****k
发帖数: 1198
1
int const *p
int* const p
Do the above two have difference?
const int *p
int const *p
Are these two the same?
H**r
发帖数: 10015
w***g
发帖数: 5958
3
我上次去google面试就纠结到这个问题, 那人非要说google要求写const int *p, 所以
这么写是对的. 我跟她解释了半天是int const *p好, 无奈那个面试官是拎不清. 正
确的理解是"const"总是修饰它左边的东西. 所以int const *p是最普适的写法, 可以
推广到类似 int const *const *const **p这样也不会糊涂.

【在 j*****k 的大作中提到】
: int const *p
: int* const p
: Do the above two have difference?
: const int *p
: int const *p
: Are these two the same?

r****t
发帖数: 10904
4
她理由是不对,但是你纠结这个就是写茴香豆了,这已经约定俗成了。

【在 w***g 的大作中提到】
: 我上次去google面试就纠结到这个问题, 那人非要说google要求写const int *p, 所以
: 这么写是对的. 我跟她解释了半天是int const *p好, 无奈那个面试官是拎不清. 正
: 确的理解是"const"总是修饰它左边的东西. 所以int const *p是最普适的写法, 可以
: 推广到类似 int const *const *const **p这样也不会糊涂.

1 (共1页)
进入Programming版参与讨论
相关主题
一帮破码工吵啥吵呀?const_cast问题
一点感受function declaration
ruby 和python比, 谁赢?i +++ j
R plot hel...一道面试题
how to change a variable's value in a const functionC++ software engineer 3 years expectation
关于const和volatile修饰变量或指针的问题zhaoce: 我感觉python很有前途呀
question about const reference各种程序语言都发展这么久了,还是没有统一的轮子
[合集] static const代替define的performance tradeoff在哪里?Web开发更是个社会学命题,技术大们洗洗睡吧...
相关话题的讨论汇总
话题: const话题: int话题: clarify话题: two话题: do