일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 리액트
- Express middleware
- 생활코딩
- Node.js Express
- 알고리즘
- 자바 인터뷰
- react jsx
- 백준 단계별로 풀어보기
- 아톰에디터
- mysql
- AtomEditor
- React props
- 맥북 사용법
- 백준
- 자바 영어면접
- 자바 개발자
- 맥북 팁
- jsx 문법
- React
- react state
- 기술면접
- 맥북 유용한 앱
- 맥북 초보
- tech interview
- 맥북 필수 앱
- node.js
- Java tech interview
- 백준 알고리즘
- 자바 기술면접
- 자바 면접
- Today
- Total
song.log
[자바 기술면접] 08. 값에 의한 호출 vs 참조에 의한 호출 본문
- 정의
값에 의한 호출(Call by Value): 메서드에 인자로 전달되는 값은 복사되어 전달됩니다. 즉, 인자로 전달된 변수의 값이 복사된 후 전달되므로, 메서드에서 인자 값을 변경하더라도 호출한 쪽의 변수 값은 변경되지 않습니다.
참조에 의한 호출(Call by Reference): 메서드에 인자로 전달되는 것이 변수의 주소(참조)이므로, 인자로 전달된 변수를 메서드에서 직접 참조하여 값을 변경하면 호출한 쪽의 변수 값도 함께 변경됩니다.
- 영어 정리 :
An argument can be passed in two ways. They are passing by value and passing by reference.
Passing by value: This method copies the value of an argument into the formal parameter of the subroutine.
Passing by reference: In this method, a reference to an argument is passed to the parameter.
In Java, there are two ways that an argument can be passed to a subroutine: pass-by-value and pass-by-reference.
Pass-by-value: In pass-by-value, a copy of the value of the argument is passed to the subroutine. Any changes made to the parameter within the subroutine have no effect on the original argument. This is because the copy is separate from the original value. Primitive data types, such as int, float, and boolean, are passed by value.
Pass-by-reference: In pass-by-reference, a reference to the argument is passed to the subroutine. This means that any changes made to the parameter within the subroutine will also affect the original argument. Objects and arrays are passed by reference. When an object or array is passed by reference, the reference to the object is passed to the method, not the object itself.
It's important to note that even though objects and arrays are passed by reference, the reference itself is passed by value. This means that if a method changes the reference to point to a different object, the change will only affect the method and not the caller.
'StudyLog > Java interview' 카테고리의 다른 글
[자바 기술면접] 10. 접근제어자 public, protected, default, private (0) | 2023.04.28 |
---|---|
[자바 기술면접] 09. 파라미터 vs 인자 (0) | 2023.04.28 |
[자바 기술면접] 07. 메서드란? (0) | 2023.04.28 |
[자바 기술면접] 06. 생성자란? (0) | 2023.04.28 |
[자바 기술면접] 05. 클래스란? (0) | 2023.04.28 |