首页 行业资讯 宠物日常 宠物养护 宠物健康 宠物故事

java 关于继承、多态的练习题

发布网友 发布时间:2022-04-26 20:29

我来回答

2个回答

热心网友 时间:2023-10-29 18:05

菜鸟的尝试,如果有什么错误和不妥,欢迎指出。

Public class child{

}

Public class error1 extends child(
érror1(){
}

Void testFail(){

}

}

Public class error2 extends child(
érror2(){
}

Void steals(){

}

}

Public class parents{
parents(){

}

Public static void print(child error){
If(error instanceof error1){
Print("谈心")
}

If(error instanceof error2){
Print("挨打")
}
}

Public static void main (string[] args){
Parents parent= new parents();

Error errora1 = new error1();

Error errora2 = new error2();

Parent.print(errora1);

Parent.print(errora2);

}

大概就这样了,纯手机敲出来的,很多语法不对,
但是看下思路还是看出来的。

热心网友 时间:2023-10-29 18:06

@SuppressWarnings("serial")
public class ChildError extends Exception {

public final Child who;

public ChildError(Child child, String msg) {
super(msg);
this.who = child;
}

}

/**
* 不及格。
*/
@SuppressWarnings("serial")
public class FlunkError extends ChildError {

public FlunkError(Child child, String msg) {
super(child, msg);
}

}

/**
* 偷东西。
*/
@SuppressWarnings("serial")
public class StealError extends ChildError {

public StealError(Child child, String msg) {
super(child, msg);
}

}

public class Parent {

public void ecate(ChildError error){
if(error instanceof FlunkError){
this.talk((FlunkError) error);
}else if(error instanceof StealError){
this.beat((StealError) error);
}
}

/**
* 谈心。
*/
public void talk(FlunkError error){
System.out.println("父母说:“没事的”。");
}

/**
* 打。
*/
public void beat(StealError error){
System.out.println("父母怒打。");
}

}

public class Child {

private Parent parent;

public Child(Parent parent) {
super();
this.parent = parent;
}

public Parent getParent() {
return this.parent;
}

/**
* 考试。
*/
public void takeExamination() throws FlunkError{
System.out.println("孩子去考试。");
throw new FlunkError(this, "孩子考试不及格!");
}

/**
* 购物。
*/
public void shopping() throws StealError{
System.out.println("孩子去购物。");
throw new StealError(this, "孩子偷东西!");
}

}

public class Test {

public static void main(String[] args) {
Child c = new Child( new Parent() );
try {
c.takeExamination();
} catch (ChildError e) {
c.getParent().ecate(e);
}
try {
c.shopping();
} catch (ChildError e) {
c.getParent().ecate(e);
}
}

}

热心网友 时间:2023-10-29 18:05

菜鸟的尝试,如果有什么错误和不妥,欢迎指出。

Public class child{

}

Public class error1 extends child(
érror1(){
}

Void testFail(){

}

}

Public class error2 extends child(
érror2(){
}

Void steals(){

}

}

Public class parents{
parents(){

}

Public static void print(child error){
If(error instanceof error1){
Print("谈心")
}

If(error instanceof error2){
Print("挨打")
}
}

Public static void main (string[] args){
Parents parent= new parents();

Error errora1 = new error1();

Error errora2 = new error2();

Parent.print(errora1);

Parent.print(errora2);

}

大概就这样了,纯手机敲出来的,很多语法不对,
但是看下思路还是看出来的。

热心网友 时间:2023-10-29 18:06

@SuppressWarnings("serial")
public class ChildError extends Exception {

public final Child who;

public ChildError(Child child, String msg) {
super(msg);
this.who = child;
}

}

/**
* 不及格。
*/
@SuppressWarnings("serial")
public class FlunkError extends ChildError {

public FlunkError(Child child, String msg) {
super(child, msg);
}

}

/**
* 偷东西。
*/
@SuppressWarnings("serial")
public class StealError extends ChildError {

public StealError(Child child, String msg) {
super(child, msg);
}

}

public class Parent {

public void ecate(ChildError error){
if(error instanceof FlunkError){
this.talk((FlunkError) error);
}else if(error instanceof StealError){
this.beat((StealError) error);
}
}

/**
* 谈心。
*/
public void talk(FlunkError error){
System.out.println("父母说:“没事的”。");
}

/**
* 打。
*/
public void beat(StealError error){
System.out.println("父母怒打。");
}

}

public class Child {

private Parent parent;

public Child(Parent parent) {
super();
this.parent = parent;
}

public Parent getParent() {
return this.parent;
}

/**
* 考试。
*/
public void takeExamination() throws FlunkError{
System.out.println("孩子去考试。");
throw new FlunkError(this, "孩子考试不及格!");
}

/**
* 购物。
*/
public void shopping() throws StealError{
System.out.println("孩子去购物。");
throw new StealError(this, "孩子偷东西!");
}

}

public class Test {

public static void main(String[] args) {
Child c = new Child( new Parent() );
try {
c.takeExamination();
} catch (ChildError e) {
c.getParent().ecate(e);
}
try {
c.shopping();
} catch (ChildError e) {
c.getParent().ecate(e);
}
}

}

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com