Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor to base class #278

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/main/java/com/github/hcsp/inheritance/Animal.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package com.github.hcsp.inheritance;

public class Animal {
private String name;

public String getName() {
return name;
}

public Animal(String name) {
this.name = name;
}

public void sayMyName() {
System.out.println("我的名字是" + name);
}

}
11 changes: 4 additions & 7 deletions src/main/java/com/github/hcsp/inheritance/Cat.java
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
package com.github.hcsp.inheritance;

public class Cat {
private String name;
public class Cat extends Animal {


public Cat(String name) {
this.name = name;
super(name);
}

public void sayMyName() {
System.out.println("我的名字是" + name);
}

public void meow() {
System.out.println("喵" + name);
System.out.println("喵" + getName());
}
}
11 changes: 4 additions & 7 deletions src/main/java/com/github/hcsp/inheritance/Dog.java
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
package com.github.hcsp.inheritance;

public class Dog {
private String name;
public class Dog extends Animal {

public Dog(String name) {
this.name = name;
}

public void sayMyName() {
System.out.println("我的名字是" + name);
super(name);
}


public void wang() {
System.out.println("汪" + name);
System.out.println("汪" + getName());
}
}
12 changes: 5 additions & 7 deletions src/main/java/com/github/hcsp/inheritance/Rat.java
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
package com.github.hcsp.inheritance;

public class Rat {
private String name;
public class Rat extends Animal {


public Rat(String name) {
this.name = name;
}

public void sayMyName() {
System.out.println("我的名字是" + name);
super(name);
}


public void zhizhi() {
System.out.println("吱吱" + name);
System.out.println("吱吱" + getName());
}
}