作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我是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/
我是C++新手,不懂这个构造。 InterceptionKeyStroke &kstroke = * (InterceptionKeyStroke *) &stroke 我知道 & = 指针。但这意味
我是一名优秀的程序员,十分优秀!