issues
search
seunGit
/
TIL-TodayILearned
🔥 Today I Learned
https://github.com/seunGit/TIL-TodayILearned/issues
1
stars
0
forks
source link
parameter & argument
#42
Open
seunGit
opened
1 year ago
seunGit
commented
1 year ago
Parameter
함수 정의에 사용되는 임의의 값(변수)
실제값이 메모리에 존재하지 않고, 할당되어있지 않음. 형태만 나타내는것
Argument
함수가 실행되어 전달되는 실제 값
실제로 메모리에 할당된 변수 !
📕 Reference
https://www.golinuxcloud.com/java-arguments-vs-parameters/
Parameter
Argument
📕 Reference