델피의 클래스 이해(10) - 깊이 들어가는 방법[16] - 방법의 순서

300 단어 Delphi


//  16:     (implementation),            

function MyFunA(x: Integer): Integer;

begin

  Result := Sqr(x); {   }

  //MyFunB(x);      {              }

end;



function MyFunB(x: Integer): Integer;

begin

  Result := MyFunA(x) * 2; {          MyFunA}

end;


 
   

좋은 웹페이지 즐겨찾기