-5
*(uint64_t*) mFrame->first

It's a pointer, structure and then dereferencing? Seems a bit bit convoluted to me. And uint64_t is defined under where?

4

1 回答 1

9

它将结果mFrame->first转换为指向uint64_t并取消引用它的指针。所以最终的结果是你得到一个uint64_t.

于 2013-06-01T06:03:48.183 回答