我们如何在Delphi中翻译这个c#代码行。 ?
List<InputMonitor> m_inputMonitors = new List<InputMonitor>();
答案 0 :(得分:2)
那不是C ++。它可能是C#或Java。我们假设它是C#。代码只是实例化一个专用的containter类的新实例。 Delphi中的等价类是TList<TInputMonitor>
。
翻译是:
uses
Generics.Collections;
....
var
InputMonitors: TList<TInputMonitor>;
....
InputMonitors := TList<TInputMonitor>.Create;
....