本文介绍了C ++地址运算符使用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道C ++&是的。
I know what the C++ & does. but what can it be used for?
推荐答案
-
& code>用于在调用站点时使用的参数(指针)传递到函数的地址。
-
&
用于在函数参数列表中引用函数时传递参数。 -
&
是位方式AND
。例如(a& b)
-
&
code> AND 。在这种情况下,两个&
使逻辑AND
。例如(a& b)
。 &
is used to pass address of arguments (pointer) to function, when it's used at calling site.&
is used to pass arguments by reference to function, when it's used in function parameter list.&
is bitwiseAND
. e.g.(a & b)
&
is used in logicalAND
. In this case, two&
make logicalAND
. e.g(a && b)
.
这篇关于C ++地址运算符使用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!