操作数类型与 ax 2012 中的运算符不兼容
Operand types are not compatible with the operator in ax 2012
对于下面的代码,我收到操作数类型与运算符不兼容的错误。操作数类型如下。
str fileName;
int hfile;
hfile = WinAPIServer::createFile(fileName);
下面的代码是直接复制过来的link.
createFile
的return类型是void
所以你不能把它的'return value'赋值给任何变量。因此,该网站上显示的代码要么是错误的,要么是他们的 createFile
方法签名与我们的不同
对于下面的代码,我收到操作数类型与运算符不兼容的错误。操作数类型如下。
str fileName;
int hfile;
hfile = WinAPIServer::createFile(fileName);
下面的代码是直接复制过来的link.
createFile
的return类型是void
所以你不能把它的'return value'赋值给任何变量。因此,该网站上显示的代码要么是错误的,要么是他们的 createFile
方法签名与我们的不同