gpt4 book ai didi

c++ - 在 C++ 中,这个结构是什么意思 "InterceptionKeyStroke &kstroke = * (InterceptionKeyStroke *) &stroke"?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:03:38 24 4
gpt4 key购买 nike

我是C++新手,不懂这个构造。

InterceptionKeyStroke &kstroke = * (InterceptionKeyStroke *) &stroke

我知道 & = 指针。但这意味着什么?

* (InterceptionKeyStroke *)

最佳答案

分解:

InterceptionKeyStroke     // a type...
& // ...which is by reference
kstroke // named 'kstroke'
= // bound to (since references are bound)
* // something that a pointer points to
(InterceptionKeyStroke*) // "I know what the type is!" cast
& // address of...
stroke // ...variable named 'stroke'

所以 *(InterceptionKeyStroke*) 正在转换为一个指针,然后取消引用该指针。

关于c++ - 在 C++ 中,这个结构是什么意思 "InterceptionKeyStroke &kstroke = * (InterceptionKeyStroke *) &stroke"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49464597/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com