Java面向对象习题接口篇

题目一:

按如下要求编写Java程序:
(1)定义接口A,里面包含值为3.14的常量PI和抽象方法double area()。
(2)定义接口B,里面包含抽象方法void setColor(String c)。
(3)定义接口C,该接口继承了接口A和B,里面包含抽象方法void volume()。
(4)定义圆柱体类Cylinder实现接口C,该类中包含三个成员变量:底圆半径radius、
圆柱体的高height、颜色color。
(5)创建主类来测试类Cylinder
题解:

/**
 * (1)定义接口A,里面包含值为3.14的常量PI和抽象方法double area()。
 */
interface A {
    public final double PI = 3.14;
    abstract double area();
}

/**
 *(2)定义接口B,里面包含抽象方法void setColor(String c)。
 */
interface B {
    abstract void setColor(String c);
}

/**
 * (3)定义接口C,该接口继承了接口A和B,里面包含抽象方法void volume()。
 */
interface C extends A,B{
    abstract void volume();
}


/**
 * (4)定义圆柱体类Cylinder实现接口C,该类中包含三个成员变量:底圆半径radius、
 *  * 圆柱体的高height、颜色color。
 */
class Cylinder implements C{
    private double radius;
    private double height;
    private String color;

    public Cylinder() {
    }

    public Cylinder(double radius, double height, String color) {
        this.radius = radius;
        this.height = height;
        this.color = color;
    }

    public double getRadius() {
        return radius;
    }

    public void setRadius(double radius) {
        this.radius = radius;
    }

    public double getHeight() {
        return height;
    }

    public void setHeight(double height) {
        this.height = height;
    }

    public String getColor() {
        return color;
    }

    @Override
    public double area() {
        return 2 * PI * radius * radius + 2 * PI * radius * height;
    }

    @Override
    public void setColor(String c) {
        this.color = c;
    }

    @Override
    public void volume() {
        System.out.println("底面半径为" + radius + ",高为" + height + ",体积为:" +radius*radius*PI*height);
    }
}
/**
 * (5)创建主类来测试类Cylinder
 */
public class CylinderTest {
    public static void main(String[] args) {
        Cylinder cylinder = new Cylinder(3,4,"蓝色");
        cylinder.volume();
        System.out.println("圆柱体的面积为:"+ cylinder.area());
        System.out.println("圆柱体的颜色为:" + cylinder.getColor());
    }
}

题目二:

按如下要求编写Java程序:
利用接口做参数,写个计算器,能完成加减乘除运算。
(1)定义一个接口Compute含有一个方法int computer(int n, int m)。
(2)设计四个类分别实现此接口,完成加减乘除运算。
(3)设计一个类UseCompute,类中含有方法:public void useCom(Compute com, int one, int two),此方法能够用传递过来的对象调用computer方法完成运算,并输出运算的结果。
(4)设计一个主类Test,调用UseCompute中的方法useCom来完成加减乘除运算。

题解:

/**
 * (1)定义一个接口Compute含有一个方法int computer(int n, int m)。
 */
interface Computer {
    int computer(int n, int m);
}

/**
 *(2)设计四个类分别实现此接口,完成加减乘除运算。
 */
 // 加
class Add implements Computer{
    @Override
    public int computer(int n, int m) {
        return n+m;
    }
}

// 减
class Sub implements Computer {
    @Override
    public int computer(int n, int m) {
        return n-m;
    }
}

// 乘
class Multiply implements Computer{
    @Override
    public int computer(int n, int m) {
        return n*m;
    }
}

// 除
class Div implements Computer{
    @Override
    public int computer(int n, int m) {
        if (m == 0) {
            System.out.println("除数不能为零。");
            return 0;
        }
        return n/m;
    }
}

/**
 * * (3)设计一个类UseCompute,
 * 类中含有方法:public void useCom(Compute com, int one, int two),
 * 此方法能够用传递过来的对象调用computer方法完成运算,并输出运算的结果。
 */
class UseComputer {
    public void useCom(Computer com, int one, int two){
        String operator = null;
        if (com instanceof Add) {
            operator = "+";
        }else if (com instanceof Sub) {
            operator = "-";
        }else if (com instanceof Multiply) {
            operator = "*";
        }else if (com instanceof Div) {
            operator = "/";
        }
        System.out.println(one + " " + operator + " " + two + " = " +com.computer(one,two));
    }
}
/**
 *(4)设计一个主类Test,调用UseCompute中的方法useCom来完成加减乘除运算。
 */
public class UseComputerTest {
    public static void main(String[] args) {
        UseComputer useComputer = new UseComputer();
        useComputer.useCom(new Add(),10,5);
        useComputer.useCom(new Sub(),10,5);
        useComputer.useCom(new Multiply(),10,5);
        useComputer.useCom(new Div(),10,5);
    }
}

题目三:

按如下要求编写Java程序:
创建Person接口,它有setData()和getData()方法对“人”属性name、sex和birthday赋值和获得这些属性组成的字符串信息。
创建类Student实现Person接口,并对自己的“学生”属性的成员变量sID、speciality设置值和获得它们值所组成的字符串信息。
通过Scanner(键盘输入)得到属性,再进行赋值。

题解:

/**
 * 按如下要求编写Java程序:
 * 创建Person接口,它有setData()和getData()方法对“人”属性name、sex和birthday赋值和获得这些属性组成的字符串信息。
 */
public interface Person {
    // 对“人”属性name、sex和birthday赋值
    void setData(String name,String sex,String birthday);
    // 获得这些属性组成的字符串信息
    String getData();
}

/**
 * 创建类Student实现Person接口,
 * 并对自己的“学生”属性的成员变量sID、speciality设置值和获得它们值所组成的字符串信息。
 */
public class Student implements Person{
    private int sID;
    private String speciality;

    private String name;
    private String sex;
    private String birthday;


    @Override
    public void setData(String name, String sex, String birthday) {
        this.name = name;
        this.sex = sex;
        this.birthday = birthday;
    }

    @Override
    // 实现Person接口中的getData()方法,获得“人”的属性组成的字符串信息
    public String getData() {
        return "姓名:" + this.name + ",性别:" + this.sex + ",生日:" + this.birthday;
    }

    // 设置学生属性的成员变量sID和speciality
    public void setInfo(int sID, String speciality) {
        this.sID = sID;
        this.speciality = speciality;
    }

    // 获得学生属性的成员变量sID和speciality所组成的字符串信息
    public String getInfo() {
        return "学号:" + this.sID + ",专业:" + this.speciality;
    }
}

/**
 * 通过Scanner(键盘输入)得到属性,再进行赋值。
 */
public class PersonInfo {
    public static void assignment(){
        Student student = new Student();
        Scanner sc = new Scanner(System.in);
        System.out.print("请输入姓名:");
        String name = sc.next();
        System.out.print("请输入性别:");
        String sex = sc.next();
        System.out.print("请输入生日:");
        String birthday =sc.next();
        System.out.print("请输入ID:");
        int id = sc.nextInt();
        System.out.print("请输入专业:");
        String speciality = sc.next();
        student.setData(name,sex,birthday);
        student.setInfo(id,speciality);
        System.out.println(student.getData());
        System.out.println(student.getInfo());
    }
}
/**
 * 按如下要求编写Java程序:
 * 创建Person接口,它有setData()和getData()方法对“人”属性name、sex和birthday赋值和获得这些属性组成的字符串信息。
 * 创建类Student实现Person接口,并对自己的“学生”属性的成员变量sID、speciality设置值和获得它们值所组成的字符串信息。
 * 通过Scanner(键盘输入)得到属性,再进行赋值。
 */
 public class PersonTest {
    public static void main(String[] args) {
        PersonInfo personInfo = new PersonInfo();
        PersonInfo.assignment();
    }
}

题目四:

编写5星级酒店:
厨师,服务员,经理三个员工都有一些相同的属性和功能
只有厨师和服务员有vip服务,厨师vip服务加菜,服务员嘘寒问暖
定义程序实现功能并测试。

题解:


/**
 * .编写5星级酒店:
 *  厨师,服务员,经理三个员工都有一些相同的属性和功能,只有厨师和服务员有vip服务,厨师vip服务加菜,服务员嘘寒问暖,定义程序实现功能并测试。
 */
public abstract class Employee {
    private String name;
    private int age;
    private String gender;
    private double salary;

    public abstract void info();

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    public String getGender() {
        return gender;
    }

    public void setGender(String gender) {
        this.gender = gender;
    }

    public double getSalary() {
        return salary;
    }

    public void setSalary(double salary) {
        this.salary = salary;
    }

}


/**
 * 厨师vip服务加菜,
 */
public class Chef extends Employee {
    private boolean vipService;
    @Override
    public void info() {
        System.out.println("员工姓名:" + getName());
        System.out.println("员工年龄:" + getAge());
        System.out.println("员工性别:" + getGender());
        System.out.println("员工工资:" + getSalary() + " 元/月");
    }

    public Chef() {

    }

    public Chef(boolean vipService) {
        this.vipService = vipService;
    }

    public void setVipService(boolean vipService) {
        this.vipService = vipService;
    }
    public boolean getVipService() {
        return vipService;
    }

    public void addDish() {
        if (vipService) {
            System.out.println("vip服务:厨师长给您加菜了.....");
        }else {
            System.out.println("您不是vip,请充值.....");
        }
    }
}
/**
 * 经理
 */
public class Manager extends Employee{
    @Override
    public void info() {
        System.out.println("员工姓名:" + getName());
        System.out.println("员工年龄:" + getAge());
        System.out.println("员工性别:" + getGender());
        System.out.println("员工工资:" + getSalary() + " 元/月");
    }
}
/**
 * 服务员嘘寒问暖
 */
public class Waiter extends Employee{
    private boolean vipService;
    @Override
    public void info() {
        System.out.println("员工姓名:" + getName());
        System.out.println("员工年龄:" + getAge());
        System.out.println("员工性别:" + getGender());
        System.out.println("员工工资:" + getSalary() + " 元/月");
    }

    public Waiter() {
    }

    public Waiter(boolean vipService) {
        this.vipService = vipService;
    }

    public void setVipService(boolean vipService) {
        this.vipService = vipService;
    }
    public boolean getVipService() {
        return vipService;
    }

    public void greetGuest() {
        if (vipService) {
            System.out.println("vip服务:服务员正在对你嘘寒问暖.....");
        }else {
            System.out.println("您不是vip,请充值.....");
        }
    }
}
/**
 *定义程序实现功能并测试。
 */
public class HotelTest {
    public static void main(String[] args) {
        Chef chef = new Chef();
        chef.setName("张三");
        chef.setAge(30);
        chef.setGender("男");
        chef.setSalary(8000);
        chef.setVipService(true);
        chef.info();
        chef.addDish();

        Waiter waiter = new Waiter();
        waiter.setName("李四");
        waiter.setAge(25);
        waiter.setGender("女");
        waiter.setSalary(5000);
        waiter.setVipService(true);
        waiter.info();
        waiter.greetGuest();

        Manager manager = new Manager();
        manager.setName("王五");
        manager.setAge(35);
        manager.setGender("男");
        manager.setSalary(12000);
        manager.info();
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,793评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,567评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,342评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,825评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,814评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,680评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,033评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,687评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,175评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,668评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,775评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,419评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,020评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,206评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,092评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,510评论 2 343

推荐阅读更多精彩内容