Předávání parametrů

Definice

Formalparameter:PointoutthevariablenameandarraynameintheformalparametertableoftheSubandFunctionprocedures.Beforetheprocedureiscalled,thereisnoTheyallocatememory,andtheirroleistoexplainthetypeandshapeoftheindependentvariableandtheroleintheprocess.Theformalparametercanbealegalvariablenameotherthanafixed-lengthstringvariable,oranarraynamewithparentheses.

Actualparameter:TheactualparameteristheparametervaluepassedfromthecallingproceduretothecalledprocedurewhentheSubandFunctionproceduresarecalled.Theactualparameterscanbevariablenames,arraynames,constants,orexpressions.Whenpassingparametersinaprocedurecall,theactualparametersoftheformalparticipationarecombinedbyposition.Thecorrespondingvariablenamesintheformalparameterlistandtheactualparameterlistdonotneedtobethesame,buttheirdatatypes,numberofparameters,andpositionsmustcorrespondone-to-one.

Relationshipbetweenthetwo:

1.Formalparameterscanonlybevariables,andactualparameterscanbeconstants,variablesorexpressions.Inthefunctionbeingdefined,thetypeoftheformalparametermustbespecified.

2.Thenumberofactualparametersshouldbethesame,andthetypesshouldbethesame.Charactertypeandintegertypecanbeusedinterchangeably.

3.Whencallingafunction,iftheactualparameterisanarrayname,thefirstaddressofthearrayispassedtotheformalparameter

4.TheactualparameterispassedtotheformalparameterinonedirectionPass,theformalparametervariabledoesnotoccupymemorywhenthereisnofunctioncall,onlywhenitiscalled.Afterthecallisover,thememorywillbereleased.Whenexecutingacalledfunction,ifthevalueoftheformalparameterchanges,itwillnotchangethevalueoftheactualparameterinthecallingfunction.

5.Theformalparametersarelikethesymbolsintheformula,andtheactualparametersarethespecificvalues​​ofthesymbols,whichmustbeassignedbeforethecallingprocess;thecallingprocessistorealizethecombinationoftheformalparticipationintheactualparametersandpassthevalueoftheactualparameterThecallispassedtotheformalparameter,whichisequivalenttosubstitutingthevalueintotheformulaforcalculation.

Metoda

Předávací parametry podle hodnoty

Whenpassingparametersbyvalue,theactualparameterThevalueofthevariableiscopiedtothetemporarystorageunit.Ifthevalueoftheformalparameterischangedduringthecall,theactualparametervariableitselfwillnotbeaffected,thatis,theactualparametervariableremainsunchangedatthevaluebeforethecall.Whenpassingparametersbyvalue,youneedtoaddthe"ByVal"keywordbeforetheparametername.

Předávání parametrů podle adresy

Whenpassingparametersbyaddress,theaddressoftheactualparametervariableistransferredtothecalledprocess,andtheformalandactualparameterssharememoryThesameaddress.Intheprocessofbeingcalled,oncethevalueoftheformalparameterchanges,thevalueofthecorrespondingactualparameteralsochanges.Iftheactualparameterisaconstantorexpression,VisualBasic6.0willdealwithitinthe"passbyvalue"mode,andthe"ByVal"keywordisnotrequiredtopassbyaddress.

Pressarraytopassparameters

InVB6.0,itisallowedtousearraysasactualparameterstopasstothesub-procedureformIntheparameter,thearraypassmustusetheaddresspasstopasstheparameters.Whenpassingarrayparameters,youshouldpayattentiontothefollowingtwoaspects:

①Writeonlythearraynameintheactualparameterandformalparameterlist,ignoringthedefinitionofdimension,buttheparenthesescannotbeomitted,whenthearrayispassedasaparameterAtthetime,thesystempassesthestartingaddressoftherealparametergrouptotheprocess,sothattheshapeparametergroupalsohasthesamestartingaddressastherealparametergroup.Iftheparameterisamulti-dimensionalarray,eachdimensionisseparatedbyacomma;

②Spodní mez a horní mez skupiny reálných parametrů lze určit pomocí funkcí Lbound aUbound v procesu nastavování hlavy.

Volání funkce s parametry

Whencallingafunction,youcanpassvalues​​toit.Thesevalues​​arecalledparameters.

Tyto parametry lze použít ve funkcích.

Můžete odeslat mnoho parametrů, jak chcete, oddělených čárkami(,):

myFunction(argument1,argument2)

Whenyoudeclareafunction,pleasedeclaretheparameterasavariable:

functionmyFunction(var1,var2){zde je kód ke spuštění}

variableTheandparametersmustappearinthesameorder.Thefirstvariableisthegivenvalueofthefirstparameterpassed,andsoon.

Příklad

Forthefollowingprogram,trytoanalyzetheresultsobtainedwhenpassingparametersbypassingvalues,passingaddresses,andpassingarraysTheprintresult.

PROGRAMSS(vstup,vystup);

VAR

A, B: celé číslo;

PROCEDUREP(x,y,z:celé číslo);

beginy:=y+1;z:=z+x;

konec;

ZAČÍT

A:=2;b:=3;

P(A+B,A,A);

writeln('A=',A);

KONEC

Odpovědět

(1)Passvalue:Calculatethevalueoftheactualparameterandpassittotheformalparameter.

Při postupu voláníP je formální parametrx=5;y=2;z=2

Při postupu voláníP je formální parametrx=5;y=3;z=7

Thisdoesnotsendtheresultbacktothemainprogram,sotheresultisA=2

(2)Transferaddress:theactualparametercalculatestheresult,Sendtheaddresstotheformalparameter.

Nastavit proměnnouT=A+B(výsledek5).Při provádění odešleteadresyhlavyT,AaA(setasaddr1,addr2,addr2)formálním parametrům:

x=daar1,y=addr2,z=addr2.

T'addressaddr1isx→T(5)

A'adresaaddr2isy→A(2)

A'addressaddr2isz→A(2)

Proces provedení Pis:①y↑:=y↑+1;②z↑:=z↑+x↑

Takže,①jeA:=A+1=3

②jeA:=A+T=8. Proto na konciA=8.

(3)passingarray:equivalenttoexecutingA:=2;B:=3;A:=A+1;A:=A+(A+B)

writeln('A=',A);

Takže výsledek A=9.

Související články
HORNÍ