Ошибка в файле AssemblyInfo - PullRequest
0 голосов
/ 01 декабря 2011

Я получаю ошибку "Error 1(E4) "end." or implementation section members (types or methods) expected."

Нигде в Интернете я не могу найти информацию об этой ошибке.

Я получаю эту ошибку из-за этой строки файла AssemblyInfo.pas:

Implementation
    SomeMethod();
end.

Я работаю в Delphi Prism.

1 Ответ

0 голосов
/ 01 декабря 2011

Это недействительно внутри implementation.

Модуль Pascal (на котором основывается Delphi Prism) состоит из пары разделов. Раздел interface предоставляет те же функции, что и заголовочный файл C / C ++; он предоставляет общедоступный контент пользователям блока кода.

implementation подобен исходному файлу C / C ++, который предоставляет заголовок. Именно здесь вы на самом деле реализуете контент, который сделал доступным модуль interface. Следовательно, он должен содержать фактический код для методов и функций.

Быстрый пример (код Delphi, но довольно похож):

unit Test.NyClass;

interface

// Defines types and so forth that, if exposed via the proper declaration, can be seen outside
// this unit simmply by adding this unit to the uses clause of the calling code.
uses 
  SysUtils;

type
  TMyClass=class(TObject)
    FMyNumber: Integer;     // protected members (no specifier, so defaults to protected)
    FMyString: String;
  private                     
    function GetMyNumber: Integer;    // Getters
    function GetMyString: string;     
    procedure SetMyNumber(const Value: Integer);  // Setters
    procedure SetMyString(const Value: string);
  published
    property MyNumber: Integer read GetMyNumber write SetMyNumber;  // properties exposed to class users
    property MyString: string read GetMyString write SetMyString;
  end;

implementation

// Actually provides the implementation for the getters/setters, any additional methods, 
// types not needed outside this implementation section, etc.

// Optional uses clause. Add units here you only need access to in the implementation code;
// this prevents circular references ("Unit A uses Unit B which uses Unit A").
uses
  SomeOtherUnit;           

// Implementation of the getters and setters declared for the properties above. Outside code
// can't call these directly (they were declared as private), but they're called automatically
// when the corresponding property is referenced.
function TMyClass.GetMyNumber: Integer;
begin
  Result := FMyNumber;
end;

function TMyClass.GetMyString: string;
begin
  Result := FMyString;
end;

procedure TMyClass.SetMyNumber(const Value: Integer);
begin
  if FMyNumber <> Value then
    FMyNumber := Value;
end;

procedure TMyClass.SetMyString(const Value: string);
begin
  if FMyString <>  Value then
    FMyString := Value;
end;

// Optional initialization section. This is what your code is probably intending to use (if Prism
// supports it - don't have it on this machine to check).
initialization
  // Any necessary loading initialization, etc. Called when the unit is being loaded into memory,
  // so you have to be careful what you're doing here.

// Optional finalization section. This is where you do cleanup of anything  allocated in the
// initialization section.
finalization

end.
...