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