本文介绍了函数式转换语法如何工作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想我有点困惑的语法。以下是什么意思?
I guess I am a bit puzzled by the syntax. What does the following mean?
typedef char *PChar;
hopeItWorks = PChar( 0x00ff0000 );
推荐答案
PChar)0x00ff0000 或(char *)0x00ff0000
。句法上认为它是调用一个参数构造函数。
It is equivalent to (PChar) 0x00ff0000
or (char *) 0x00ff0000
. Syntactically think of it as invoking a one-argument constructor.
这篇关于函数式转换语法如何工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!