분류 전체보기433 참조 (reference) 앞서, 복제란것이 이해하기 쉽고 연관되어있다. 데이터들은 기본적으로 제공된다해서 기본 데이터 타입이다ex) byte short int long 기본데이터 타입이 아닌것은ex)데이터타입을 생성할때 new를 통해서 생성하는것들은 기본데이터 타입이아ㄹ니라 참조형데이터 형이다참조가 들어간다 참조의 예로 class A{ public int id; A(int id){ this.id = id; }}public class ReferenceDemo1 { public static void runValue(){ int a = 1; int b = a; b = 2; System.out.println("runValue, "+a); } public static void runReference(){ A a = new A(1); A .. 2018. 9. 4. enum enum은 열거형이라고 부른다 열거형은 서로 연관된 상수들의 집합니다.즉, enum=서로 연관된 상수들의 집합. enum Fruit{ APPLE, PEACH, BANANA;}enum Company{ GOOGLE, APPLE, ORACLE;} public class ConstantDemo { public static void main(String[] args) { /* if(Fruit.APPLE == Company.APPLE){ System.out.println("과일 애플과 회사 애플이 같다."); } */ Fruit type = Fruit.APPLE; switch(type){ case APPLE: System.out.println(57+" kcal"); break; case PEACH: System.o.. 2018. 9. 4. java clone clone = 복제라는 뜻 어떤 객체가 있을때 그 객체를 똑같이 복제해주는 역할. class Student implements Cloneable{ String name; Student(String name){ this.name = name; } protected Object clone() throws CloneNotSupportedException{ return super.clone(); }} class ObjectDemo { public static void main(String[] args) { Student s1 = new Student("egoing"); try { Student s2 = (Student)s1.clone(); System.out.println(s1.name); System.out... 2018. 9. 4. java finalize , garbage collection https://d2.naver.com/helloworld/1329 가비지 컬렉션에대한 이해도 주소 첨부,. 2018. 8. 29. 자바 equals ex) public static void main(String[] args) { Student s1 = new Student("egoing"); Student s2 = new Student("egoing"); System.out.println(s1 == s2); System.out.println(s1.equals(s2)); 이렇게 비교하면 둘다 false가나온다 객체와 객체를 비교해서 그러므로문자열을 비교해야함. class Student{ String name; Student(String name){ this.name = name; } public boolean equals(Object obj) {Student s = obj; //불가능 return true ; }} class ObjectDemo { p.. 2018. 8. 29. Object클래스 자바에서 상속이란 필수적이다. 상속을 하건 하지 않았건 기복적인 상속을 하게 된다. ex class O {}이것은 아래 코드와 같다 calss O extends Object{}자바에서 모든 클래스는 사실 오브젝트를 암시적으로 상속 받고 있는 것이다. toString->어떠한 객체가 있을때 일종의 문자열로 표시해주는 문자화시키는 것. (객체를 출력시) 2018. 8. 29. 이전 1 ··· 68 69 70 71 72 73 다음