鱼 鱼片干子 Unregistered / Unconfirmed GUEST, unregistred user! 2000-08-27 #1 我想在一个接口中定义一个function ,它的modifier是[out,retval],返回值是 widestring,参数的类型应该是什么???????(0分)<br />如题!!!
鱼 鱼片干子 Unregistered / Unconfirmed GUEST, unregistred user! 2000-08-27 #3 我只想在接口中实现一个返回widestring的function阿 我应该怎么做那???
老 老屯 Unregistered / Unconfirmed GUEST, unregistred user! 2000-08-27 #4 你用的是Delphi么, 定义一个接口函数, 返回值是WideString即可 Type IMyInterface = interface function ReturnString: WideString; end; TMyInterface = class(TObject, IMyInterface) function ReturnString: WideString; end;
你用的是Delphi么, 定义一个接口函数, 返回值是WideString即可 Type IMyInterface = interface function ReturnString: WideString; end; TMyInterface = class(TObject, IMyInterface) function ReturnString: WideString; end;
鱼 鱼片干子 Unregistered / Unconfirmed GUEST, unregistred user! 2000-08-27 #5 可以直接在type library 中定义么??????????