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

Mx2 branch #117

Merged
merged 8 commits into from
Jan 10, 2020
Merged
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
10 changes: 10 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,10 @@
package com.github.hcsp.inheritance;

public class Animal {
protected String name;

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

}
9 changes: 3 additions & 6 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;
}

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

public void meow() {
System.out.println("喵" + name);
}


}
7 changes: 1 addition & 6 deletions src/main/java/com/github/hcsp/inheritance/Dog.java
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
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);
}

public void wang() {
System.out.println("汪" + name);
}
Expand Down
10 changes: 4 additions & 6 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);
}

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

}

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

空行。。。


}