일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- html
- js
- date
- ArrayList
- 자바
- Maven
- 이탈리아
- Array
- CSS
- string
- CMD
- windows
- table
- Eclipse
- Button
- vscode
- Files
- 이클립스
- input
- list
- 자바스크립트
- 인텔리제이
- Visual Studio Code
- Java
- 문자열
- json
- javascript
- 배열
- 테이블
- IntelliJ
- Today
- Total
목록IT/Java (137)
어제 오늘 내일
지난번에는 1차원 배열의 값을 출력하는 2가지 방법을 알아보았습니다. [Java] 배열 값 출력하는 2가지 방법 (반복문, Arrays.toString()) 이번에는 2차원 배열의 값을 출력하는 2가지 방법을 알아보도록 하겠습니다. 먼저, Arrays.toString() 메소드를 이용하여, 2차원 배열을 출력해 볼까요? 코드 import java.util.Arrays; public class PrintArray { public static void main(String[] args) { int[][] arr = { { 1, 2 }, { 3, 4 }, { 5, 6, 7 } }; System.out.println(Arrays.toString(arr)); } } 결과 [[I@762efe5d, [I@5d22bb..
이번 포스팅에서는 반복문과 java.util.Arrays의 toString() 메소드를 이용하여 배열의 값을 출력하는 방법을 소개합니다. 먼저, 그냥 배열의 값을 출력해 볼까요? [ 코드 ] public class PrintArray { public static void main(String[] args) { int[] arr = { 1, 2, 3, 4, 5 }; System.out.println(arr); // ?? } } [ 결과 ] [I@762efe5d 위와 같이 그냥 배열 변수(arr)를 출력하면 알수 없는 값이 출력됩니다. 아마도, 여러분들이 위 코드를 돌리면 저와는 또 다른 값이 출력될 것입니다. 왜냐하면, 여기서 출력된 값은 arr라는 변수가 가리키고 있는, [1, 2, 3, 4, 5] 값이..
짝수와 홀수 구분하기 Java에서 숫자가 홀수인지, 짝수인지 판단하는 코드입니다. public class EvenOdd { public static void main(String[] args) { checkEvenOdd(1); // 홀수 checkEvenOdd(2); // 짝수 checkEvenOdd(3); // 홀수 } public static void checkEvenOdd(int num) { if (num % 2 == 1) { System.out.println("홀수"); } else { System.out.println("짝수"); } } } public static void checkEvenOdd(int num) {...} 위 코드에서 checkEvenOdd() 메소드는 홀수인지, 짝수인지 판단..
1에서 10까지 숫자를 모두 더한 값을 계산하는 예제입니다. for문과 while문을 사용하였습니다. for문 public class Sum { public static void main(String[] args) { // 합계 int sum = 0; for (int i = 1; i
이번에는 앞에서 소개한 32bit로 인코딩된 문자를Java 코드를 통해 확인해 보도록 하겠다.([JavaAPI] String 클래스 메소드와 예제(2) - Unicode 처리(1) 참조) public boolean equals(Object anObject) Returns the length of this string. The length is equal to the number of Unicode code units in the string.String 클래스의 length() 메소드는 string의 길이를 리턴한다. 정확히는 unicode code unit의 숫자를 리턴한다. int ch32[] = {0x1F0A1}; // 🂡 String st32 = new String(ch32, 0, 1); int ..
java.lang.String 클래스의 메소드 public int length() Returns the length of this string. The length is equal to the number of Unicode code units in the string. String 클래스의 length() 메소드는 말 그대로 String의 길이를 리턴하는 메소드이다.그런데...Unicode code units? 이건 뭐지?이걸 알기 위해서는 먼저 Java에서 Unicode를 어떻게 표현하는지 알아야 한다. Unicode / Code Point유니코드(Unicode)는 전 세계의 모든 문자를 컴퓨터에서 일관되게 표현하고 다룰 수 있도록 설계된 산업 표준이다.- Wikipedia(https://ko.wik..
Java에서 많이 사용되는 클래스의 메소드를 예제를 포함하여 정리해 보려고 한다. (Java 8 기준) java.lang.String 생성자 String() String(byte[] bytes) String(byte[] bytes, Charset charset) String(byte[] bytes, int offset, int length) String(byte[] bytes, int offset, int length, Charset charset) String(byte[] bytes, int offset, int length, String charsetName) String(byte[] bytes, String charsetName) String(char[] value) String(char[] val..