📄 학습내용 AOP 주제 주제 주제 주제 주제 🧶 발생한 문제 및 해결방법 문제점) 정수 자리수 구하기 해결방법) 각 자리의 정수를 문자열 배열로 변환해서 배열의 길이 구하기 int max = 12345; int count = Stream.of(String.valueOf(max).split("")) // Stream .mapToInt(Integer::parseInt) // IntSTream .toArray() // int[] .length; // int System.out.println(count); // 5 문제점) LinkedList로 구현된 Queue형 배열 선언하기 해결방법) int size = 20; Queue[] queue = new Queue[size]; // 배열의 크기(size)만큼 배열..