목록java/8일차 (19)
gwooden_코린이
- Wrapper int, double, char, long -> 객체로 만들어서 쓰고 싶을때 기본 타입래퍼 클래스 기본타입 래퍼 클래스 byte Byte short Short int Integer long Long float Float double Double char Character boolean Boolean 프린트문에는 기본 불리형(boolean)으로 값을 출력 package 자바API; public class Sample07 { public static void main(String[] args) { // Wrapper Integer i1 = new Integer(10); //박싱 Integer i2 = new Integer(10); System.out.println(i1 == i2); //객..
package 자바API; public class Sample06 { public static void main(String[] args) { double b = 5.45; System.out.println(Math.abs(-10)); System.out.println(Math.ceil(5.4)); System.out.println(Math.floor(5.8)); //반올림 System.out.println(Math.round(5.4)); System.out.println(Math.round(5.8)); System.out.println(Math.round(b * 10)/10.0); System.out.println(Math.max(5, 3)); System.out.println(Math.min(5, 3..
package 자바API; public class Sample05 { public static void main(String[] args) { long start = System.currentTimeMillis(); //현재 지금 시간을 알려준다 1/1000 StringBuffer sb = new StringBuffer() ; String str = ""; for(int i=0; i
체이닝 sb.append("abc").append(123).append('A').append(false); StringBuffer
charAt(int index) equals(Object obj) trim() package 자바API; public class Sample04 { public static void main(String[] args) { // 123456789.....쭉~ String str = "Hello My Name is Hong Gil Dong"; String str2 = " Hello My Name is Hong Gil Dong "; System.out.println("===기본 입력 된 값==="); System.out.println("Hello My Name is Hong Gil Dong"); System.out.println("===기본 입력 된 값==="); System.out.println("\n==6..
package 자바API; public class Sample03 { public static void main(String[] args) { System.out.println(System.getProperty("java.version")); System.out.println(System.getProperty("java.home")); System.out.println(System.getProperty("os.name")); System.out.println(System.getProperty("file.separtor")); System.out.println(System.getProperty("user.name")); System.out.println(System.getProperty("user.home..
package 자바API; public class Sample02 { public static void main(String[] args) { // Clone String[] arr = {"홍", "이", "김", "안"}; String[] arr2 = arr.clone(); for(String a : arr) { //arr 배열방에 있는 값들이 순서대로 a에 대입되면서 전부 출력된다. System.out.println(a); } arr2[1] = "박"; for(String a : arr2) { System.out.println(a); } } }
기본 자바 API equals, hashCode package 자바API; public class Sample01 { public static void main(String[] args) { // equals 메서드 //String str1 = "abc";랑 같은 코드 String str1 = new String("abc"); //새롭게 객체를 생성 String str2 = new String("abc"); System.out.println("str1 : " +str1.hashCode()); System.out.println("str2 : " +str1.hashCode()); System.out.println("str1 : " + System.identityHashCode(str1)); System.ou..