Formal parameter (parameter) ဆိုတာ subroutine (method) definition မှာ ပေးထားတဲ့ နာမည်ကို ဆိုလိုတာ။
static void function foo(int bar){}
ဒီနေရာမှာ bar
ဆိုတာက formal parameter (parameter) လို့ခေါ်ပါတယ်။
Actual parameter (argument) ဆိုတာက subroutine (method) ရဲ့ parameter ထဲမှာ ထည့်သွင်းလိုက်တဲ့ ဒေတာကို ဆိုလိုတာ။
static void function foo(int bar){
System.out.println(bar);
}
public static void main([] args){
foo("Hello World");
}
ဒီနေရာမှာ foo အတွင်းမှာ ထည့်လိုက်တဲ့ ဒေတာ Hello World
ဆိုတာ actual parameter (argument) ဖြစ်ပါတယ်။
Top comments (0)