일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Real MySQL
- 토비의 스프링
- 스트림
- redis
- 자바 ORM 표준 JPA 프로그래밍
- 자바
- Java
- K8s
- 쿠버네티스
- GC
- 보조스트림
- 이스티오
- Collection
- Stack
- gradle
- 백준
- jvm
- mysql
- SpringBoot
- list
- 토비의 스프링 정리
- IntellJ
- spring
- 스프링
- JPA
- OS
- MSA
- thread
- Kotlin
- Stream
Archives
- Today
- Total
목록CallbyValue (1)
인생을 코딩하다.

public class ReferencePass { public static void main(String[] args) { ReferencePass reference = new ReferencePass(); reference.callPassByValue(); } public void callPassByValue() { int a = 10; String b = "hyungil"; System.out.println("before passByValue"); System.out.println("a=" + a); System.out.println("b=" + b); passByValue(a, b); System.out.println("after passByValue"); System.out.println("a=..
Java
2021. 1. 9. 09:37