C++ builder中的这样的类型(type1 &a)怎么翻译成DELPHI
C++ builder中的这样的类型(type1 &a)怎么翻译成DELPHI
比如bool test(type1 &a)怎么翻译成delphi?
[解决办法]
bool test(type1 &a)
->
function test(var a :type1):boolean;
发布时间: 2012-03-22 17:43:57 作者: rapoo
C++ builder中的这样的类型(type1 &a)怎么翻译成DELPHI
C++ builder中的这样的类型(type1 &a)怎么翻译成DELPHI
比如bool test(type1 &a)怎么翻译成delphi?
[解决办法]
bool test(type1 &a)
->
function test(var a :type1):boolean;