JAVA OOD 소결
Student s = new Student(): compiler will create a student object in heap, and then pass a reference of the heap space to variable s (it's the address).
Person p = new Student(); -> works
Student s = new Person(); -> not work,
Person p; p = s; -> works,
Student s; s = p; -> not work
Protected: same packeage, subclass, same class Package: same package, same class These two are not recommended, as other class in same package can access.
Everything extend from Java Object class
Object creation: from subclass follow constructor all the way to object, and then initialize one by one. From object, to subclass.
Compiler rules:
One of the confusing thing is:
public class Person {
private String name;
public Person(String s){
this.setName(s);
}
public Person(){}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
public class Student extends Person{
private String name;
public Student(){
super("Lily");
this.name = "Amy";
}
public static void main(String[] args) {
Student s = new Student();
System.out.println(s.getName());
System.out.println(s.name);
}
}
이 코드 의 출력 은 먼저 Lily, 그리고 Amy 입 니 다.하위 클래스 클 라 스 는 부모 클래스 의 모든 방법 과 변 수 를 계승 합 니 다. 그러나 성명 을 추가 하지 않 으 면 (하위 클래스 에서 string name 을 정의 하지 않 음) 하위 클래스 는 부모 클래스 의 name 변 수 를 사용 합 니 다.s. getName () 은 하위 클래스 에서 부모 클래스 를 호출 하 는 방법 으로 부모 클래스 의 name 을 얻 었 음 을 나타 낸다.하위 클래스 가 Super 를 호출 할 때 하위 클래스 는 부모 클래스 를 예화 하 는 동시에 부모 클래스 의 name 을 할당 합 니 다.
Overloading: Same class has same method, with different parameters. Return type can be different, as long as the parameters are different. Java compiler only identifies parameter list.
Overriding: Sub-class has same signature (name, parameters list) as super class
Polymorphism: what it gives us, is the ability to keep alll of our objects in one big collection, and then call methods on every single obect, and appropriate method will be make sure to get executed.
Polymorphism:
Compile time rules:
Person p = new Student() -> compile only knows p is a reference to Person object type
Run time Rules
Person p = new Student() -> Run time now follows the Student object,
Abstract Class vs Interface
Both two can achieve the following:
Interface only provides "Final Static"Variables and Abstract Methods, it doesn't provide common codes. Interface is implicitly abstract, you don't need to declare it. Interface doesn't contains constructor. Interface is a good way, to force Sub-classes to implement the functions.
However Abstract Class can contain Abstract Methods, and it can also contains common codes (common methods). Common methods are the methods that Sub-classes can just extend, and don't need to implement themselves. If one method in class in Abstract, class must be Abstract. Abstract class cannot be instantiated. To use Abstract class, you have to extend it, and must override the Abstract method.
Class Relationship
Association: Student select a class Aggregation: has a relationship, one to many mapping Combination: has a relationship, one to one mapping, Dependence: supplier and customer, Inheritance: Is a relationship
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.