🧺

TIL: Parameter와 Argument의 차이

Date
2021/10/11
Tags
TIL
Comp. Sci
Created by

P is Placeholder, A is Actual value

Parameter is the placeholder. Argument is the actual value that gets passed in.
int add(int x, int y) { return x + y; }
C++
복사
위 함수 정의에서 xy는 Parameter(주로 '매개변수', '인자' 등으로 번역됨)이다.
int result = add(123, 456);
C++
복사
위 함수 호출에서 123456은 Argument(주로 '인수'로 번역됨)이다.

References