song.log

[자바 기술면접] 09. 파라미터 vs 인자 본문

StudyLog/Java interview

[자바 기술면접] 09. 파라미터 vs 인자

SingaKorean 2023. 4. 28. 17:36
반응형

- 정의

파라미터(parameter) : 함수에서 사용될 변수를 선언하는 데 사용됩니다. 즉, 파라미터는 함수에서 값을 전달받을 때 사용됩니다. 파라미터는 함수를 호출할 때 함수에 값을 전달하여 함수의 로직을 수행할 때 사용됩니다.

 

인자(argument) :  함수를 호출할 때 함수에 전달되는 값입니다. 함수를 호출할 때 인자를 전달하면 함수는 이 인자를 사용하여 작업을 수행합니다.

 

간단하게 말하면, 파라미터는 함수를 정의할 때 사용하는 변수이고, 인자는 함수를 호출할 때 전달하는 값입니다. 파라미터는 함수 내부에서 사용되며, 인자는 함수 호출자로부터 전달됩니다.

 

- 영어 정리 : 

Parameters are used to declare variables that will be used in the function. In other words, parameters are used to receive values when calling the function. Parameters are used when calling a function to pass values to the function to perform its logic.

 

Arguments are the values passed to a function when it is called. When a function is called with arguments, the function uses these arguments to perform its work.

 

In short, parameters are variables used when defining a function, while arguments are values passed to a function when it is called. Parameters are used internally in the function, while arguments are passed from the function caller.

 

반응형
Comments