일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MySQL
- 테스트메소드
- 메세지수정
- 추후정리
- appspec.yml
- 검색
- 컨테이너실행
- 예약
- 적용우선순위
- AuthenticationEntryPoint
- 서브쿼리
- 메소드명
- WeNews
- 테스트
- appspec
- querydsl
- ubuntu
- docker명령어
- 2 > /dev/null
- Query
- application.yml
- 참조키
- 커밋메세지수정
- subquery
- 포트
- EC2
- foreignkey
- 네이티브쿼리
- 외부키
- ㅔㄴ션
- Today
- Total
목록JAVA (49)
제뉴어리의 모든것
내부 클래스란? 말 그대로 Class 내부에 존재하는 Class이다. 내부 클래스 예 class OuterClass{ class NonStaticInnerClass{ //스태틱이 아닌 내부 클래스 int value; public NonStaticInnerClass(int value) { this.value = value; } @Override public String toString() { return "NonStaticInnerClass{" + "value=" + value + '}'; } } static class StaticInnerClass{ //스태틱인 내부 클래스 int value; public StaticInnerClass(int value) { this.value = value; } @Ov..
배열 타입 -> Stream 변환 배열의 각 요소가 Stream의 각요소가 될 수 있도록 변환 방법 char[] 타입 -> Stream char배열을 Stream으로 변환하는 방법으로, char 타입의 데이터들이 Stream안에 Character 요소로 변환되는 방법이다. Stream은 컬랙션 프레임웍의 인터페이스들과 마찬가지로 기본타입(int, char, double.......)을 요소로 가질 수없다. char[] charArr = {'a', 'b', 'c'}; // Example 1 - the best way: Stream charStream = new String(charArr) .chars().mapToObj(c -> (char) c); 참조 : https://stackoverflow.com/q..
public static void main(String[] args) { String[] arr = {"A", "C", "B", "C", "D"}; String item = "C"; arr = removeElement(arr, item); System.out.println(Arrays.toString(arr)); } 결과 : [A, B, D] 참조 : https://www.techiedelight.com/ko/remove-element-from-array-java/
int[] arr3 = IntStream.concat(IntStream.of(arr1), IntStream.of(arr2)).toArray(); arr1과 arr2는 int[] 타입의 변수이다. 참조 : https://leeborn.tistory.com/entry/JAVA-Stream-concat%EC%9D%84-%EC%9D%B4%EC%9A%A9%ED%95%9C-2%EA%B0%9C%EC%9D%98-int-%EB%B0%B0%EC%97%B4-%ED%95%A9%EC%B9%98%EA%B8%B0
코드 public class AnonymousClassPractice { public static void main(String[] args) { ParentInterface pi = new ParentInterface() { @Override public void print(int a) { System.out.println("상위 존재가 인터페이스인 익명클래스에서 " + a + " 를 print 합니다"); } }; pi.print(77); ParentClass pc = new ParentClass(){ @Override void print(int a) { System.out.println("상위 존재가 클래스인 익명클래스에서 " + a + " 를 print 합니다"); } }; pc.print(100..