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