答案 0 :(得分:7)
是的,如果您在项目选项中打开“允许全局”选项,则可以。然后你可以执行以下代码:
interface
method GlobalMethod: Integer; public;
implementation
不建议使用此结构。更.Net的方法是在类上使用静态/类方法。
type
TSomeClass = public class
public
class method GlobalMethod: Integer;
end;
// Call like this
I := TSomeClass.GlobalMethod;