挺初级的问题,请进(50分)

  • 主题发起人 主题发起人 阿梁
  • 开始时间 开始时间

阿梁

Unregistered / Unconfirmed
GUEST, unregistred user!
在delphi中新建一个unit,只有 三行:
unit unit1

implement

end;

我想写个通用函数放进去,如function getname:string;
应该怎样写? :D
 
implement下面
end上面
的地方
 
unit unit1

protected
function getname: String;

Implement

function getname;
Begin
End;

End;

济南的吧!?
 
unit
<font color = 'RED'>interface
uses classes, sysutils; </font> // 如果你的函数中需要调用delphi的基本函数的话, 至少需要这两个, 可能还要其它的

<font color = 'RED'>function GetName: string;</font>

implement
<font color = 'RED'>function GetName: string;
begin
end;</font> // 具体实现

end;
 
青岛的!
 
多人接受答案了。
 
后退
顶部