delphi의 과정과 함수

1216 단어 Delphi
Delphi             ,   function,    procedure,    “  ” “  ”,                      ,           ,       ,        ;                  Length,       

function Length(S:string):Integer;

         S,         ,            ,        。



        :

            GetNum(),        num1,num2,                  ,    :



function GetNum(num1:Integer;num2:Integer):Integer; //   

var

    haha:Integer;

Begin

    Result:=(num1+num2)/2; //       Result

    //GetNum:=(num1+num2)/2;    //      

    haha:=555; //        ,     ,   ,    GetNum:=(num1+num2)/2;     ,         。



End;



     :

function      (    ):   ;



     :

function MyFunc(Param1,Param2:Integer;Param3:Real):Integer;//          ,               。

Begin

    //       

End;



  :

            ,           ,       Result  。



             。



Result          ,              ,             。      ,Result             ,               ,        ,          。  , Result           , :

function MyFunc(s:Integer):Integer;

Begin

    Result:=Result*s; //        。

    MyFunc:=s*s;//       。

End;



 2:

function MyFunc():Integer;

Begin

    Result:=Result+5;

    //    MyFunc():=MyFunc()+5;      。

End;

좋은 웹페이지 즐겨찾기