Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- string
- array
- Tree
- database
- 자바
- Binary Tree
- 파이썬
- 코테
- Math
- java
- Binary Search
- 코딩테스트
- SQL
- Matrix
- two pointers
- greedy
- geometry
- Stack
- sorting
- dynamic programming
- implement
- hash table
- Number Theory
- Class
- Data Structure
- bit manipulation
- simulation
- Method
- Counting
- 구현
Archives
- Today
- Total
목록Arrays (1)
코린이의 소소한 공부노트
배열 (5) Arrays클래스
Arrays클래스는 배열 관련 메서드를 모아놓은 클래스이다. 이 중 많이 쓰는 메서드 몇 가지를 보려 한다. 1. 배열의 내용을 문자열로 출력하기 1) 1차원 배열의 내용을 출력할 때 이용하는 메서드 toString() int[] arr1d = {0, 1, 2, 3}; System.out.println(Arrays.toString(arr1d)); // [0, 1, 2, 3] 2) 2차원 이상의 배열의 내용을 출력할 때 이용하는 메서드 deepToString() int[][] arr2d = { {00, 01}, {10, 11} }; System.out.println(Arrays.deepToString(arr2d)); // [[0, 1], [10, 11]] // 2차원 배열에 toString()을 쓰면 어떻..
Java
2022. 2. 20. 15:21