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

Geng geng geng #253

Merged
merged 3 commits into from
Dec 5, 2021
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
23 changes: 23 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,23 @@
package com.github.hcsp.inheritance;

public class Animal {

private String name;

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

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

public void call(String voice) {
System.out.println(voice + name);
}





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

public class Cat {
private String name;
public class Cat extends Animal{
Copy link
Contributor

Choose a reason for hiding this comment

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

用一个空格分隔非空白字符。
'{' 前应有空格。


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

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

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

}
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{
Copy link
Contributor

Choose a reason for hiding this comment

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

'{' 前应有空格。


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

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


public void wang() {
System.out.println("汪" + name);
super.call("汪");
}
}
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{
Copy link
Contributor

Choose a reason for hiding this comment

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

'{' 前应有空格。


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

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


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

}