Java学习第9天

Java面向对象实例

1. 奥特曼打小怪兽
  • 定义奥特曼类
public class Ultraman {

    private String name;
    private int hp;//生命值
    private int mp;//魔法值
    
     public Ultraman(String name,int hp,int mp){
         this.name = name;
         this.hp = hp;
         this.mp = mp;
     }
     
    public String getName() {
        return name;
    }

    public int getHp() {
        return hp;
    }

    public void setHp(int hp) {
        this.hp = hp < 0 ? 0 : hp;
    }

    public int getMp() {
        return mp;
    }

    public void setMp(int mp) {
        this.mp = mp;
    }

    public String info(){
        return String.format("%s奥特曼 - 生命值:%d 魔法值:%d",name, hp, mp);
    }
    
    public void attack(Monster m){
        int injury = (int) (Math.random() * 11 + 10);
        m.setHp(m.getHp() - injury);
    }
    
    public void hugeAttack(Monster m){//究极必杀技
        if (mp >= 40) {
        int injury = m.getHp() / 4 * 3 > 50 ? m.getHp() / 4 * 3 : 50;
        m.setHp(m.getHp() - injury);
        mp -= 40;
        }
    }
    
    public void magicalAttack(Monster[] mArray){
        if (mp >= 15) {
            for (Monster m : mArray) {
                if (m.getHp() > 0) {
                    int injury = (int) (Math.random() * 11 + 15);
                    m.setHp(m.getHp() - injury);
                }
            }
            mp -= 15;
        }
    }

    public void resumeMp() {
        mp += 4;
    }
}
  • 定义小怪兽类
public class Monster {

    private String name;
    private int hp;
    
    //构造器
    public Monster(String name,int hp){
        this.name = name;
        this.setHp(hp);
    }
    
    public String info(){
        return String.format("%s怪兽 - 生命值:%d",name, getHp());
    }
    
    //小怪兽的攻击方法
    public void against(Ultraman u){
        int injury = (int) (Math.random() * 11 + 5);
        u.setHp(u.getHp() - injury);
    }

    public String getName() {
        return name;
    }

    public int getHp() {
        return hp;
    }

    public void setHp(int hp) {//修改器 - 修改生命值
        this.hp = hp < 0 ? 0 : hp;
    }
}
  • main 函数
public class AttackMain {
    
    public static Monster selectOne(Monster[] mArray){//用了static,不用创建对象,可直接调用
        Monster temp = null;                    //没有加static的方法,必须创建了对象才能调用
        do {
            int randomIndex = (int) (Math.random() * mArray.length);
            temp = mArray[randomIndex];
        } while (temp.getHp() == 0);
        return temp;
    }

    public static void showMonstersInfo(Monster[] mArray){
        for (Monster monster : mArray) {
            System.out.println(monster.info());
        }
    }
    
    public static boolean isAllDead(Monster[] mArray){
        for (Monster monster : mArray) {
            if (monster.getHp() > 0) {
                return false;
            }
        }
        return true;
    }
    
    public static void main(String[] args) {
        Ultraman u = new Ultraman("迪迦", 250, 100);
        System.out.println(u.info());
        Monster m1 = new Monster("阿尔法", 130);
        Monster m2 = new Monster("jack", 130);
        Monster m3 = new Monster("ben", 130);
        Monster m4 = new Monster("tony", 130);
        Monster[] mArray = {m1,m2,m3,m4};
        showMonstersInfo(mArray);
        int round = 1;
        do {
            System.out.println("========第" + round + "回合========");
            int random = (int) (Math.random() * 10 + 1);
            Monster m = selectOne(mArray);
            if (random <= 7) {
                useNomalAttack(u, m);
            }
            else if(random <= 9) {
                if (u.getMp() >= 15) {
                    System.out.println("奥特曼使用了魔法攻击");
                    u.magicalAttack(mArray);
                    for (Monster monster : mArray) {
                        if (monster.getHp() > 0) {
                            monster.against(u);
                        }
                    } 
                }
                useNomalAttack(u, m);
            }
            else{
                if(u.getMp() >= 40){
                System.out.println("奥特曼使用了究极必杀技");
                u.hugeAttack(m);
                if (m.getHp() > 0) {
                    m.against(u);
                    }
                }
                else {
                    useNomalAttack(u, m);
                }
            }
            if (u.getHp() > 0) {
                u.resumeMp();
            }
            System.out.println(u.info());
            showMonstersInfo(mArray);
            round += 1;
        } while (u.getHp() > 0 && !isAllDead(mArray));
        if (u.getHp() > 0) {
            System.out.println(u.getName() + "奥特曼胜利");
        }
        else {
            System.out.println("小怪兽胜利");
        }
    }

    private static void useNomalAttack(Ultraman u, Monster m) {//使用普通攻击
        System.out.println("奥特曼使用了普通攻击");
        u.attack(m);
        if (m.getHp() > 0) {
            m.against(u);
        }
    }
}
2. 手机类
  • 定义一个手机类
public class MobilePhone {

    private String brand;//品牌
    private double size;//大小
    private String owner;//机主
    private double price;//价格
    private boolean isSmart;//是否是智能机
    private String[] installedApps;
    private int numberOfApps;
    
    
public MobilePhone(String brand, double size, double price, boolean isSmart) {
        this.brand = brand;
        this.size = size;
        this.price = price;
        this.isSmart = isSmart;
        if (isSmart) {
            installedApps = new String[100];
        }
    }

    //修改器 - 属性的setter方法
    public void setOwner(String owner){
        this.owner = owner;
    }
    
    //访问器 - 属性的getter方法
    public String getOwner(){
        return owner;
    }
    
    public void show(){
    System.out.println(owner + "的价值" + price + "元的" + size + "英寸的" + brand + "手机");
    }
    
    public void call(String tel){
        System.out.println(owner + "正在呼叫" + tel + "...");
    }
    
    public void sendShortMessage(String[] tels, String content){
        for (String tel : tels) {
            System.out.println("向" + tel + "发送信息: " + content);
        }
    }
    
    public void installApp(String appName){
        if (isSmart && numberOfApps < installedApps.length) {
            System.out.println("正在安装" + appName);
            installedApps[numberOfApps] = appName;
            numberOfApps += 1;
        }
        else {
            System.out.println("不能安装应用程序.");
        }
    }
    
    public void uninstallApp(String appName){
        if (isSmart) {
            for (int i = 0; i < numberOfApps; i++) {
                if (installedApps[i].equals(appName)) {
                    System.out.println("正在卸载" + appName);
                    for (int j = i; j < numberOfApps - 1; j++) {
                        installedApps[j] = installedApps[j + 1];
                    }
                    numberOfApps -= 1;
                    return;
                }
            } 
        }
        else{
            System.out.println("不能卸载应用");
        }
    }
    
    public void runApp(String appName){
        for(int i = 0; i < numberOfApps; i++){
            if (installedApps[i].equals(appName)) {
                System.out.println("启动应用" + appName);
                return ;
            }
        }
    }
}
3. 矩形类
  • 定义一个矩形(RecTangle)类
public class RecTangle {

    private double length;
    private double width;

    public RecTangle(double length, double width){
        this.length = length;
        this.width = width;
    }
    
    public double area(){
        return length * width;
    }
    
    public double perimeter(){
        return (length + width) * 2;
    }

    public double getLength() {
        return length;
    }

    public void setLength(double length) {
        this.length = length;
    }

    public double getWidth() {
        return width;
    }

    public void setWidth(double width) {
        this.width = width;
    }
}
  • main 函数
public class RecTangleTest {

    public static void main(String[] args) {
        RecTangle recTangle = new RecTangle(5.5, 4.5);
        System.out.println("周长" + recTangle.perimeter());
        System.out.println("面积" + recTangle.area());
        recTangle.setWidth(5.5);
        System.out.println("周长" + recTangle.perimeter());
        System.out.println("面积" + recTangle.area());
    }
}
5. 定义坐标类,可以算坐标之间的距离
  • (/** /)文档注释:public方法都需要注释
/**
 * 平面上的点
 * @author Apple
 * @since 0.1
 */
public class Point {

    private double x;   //横坐标
    private double y;   //纵坐标
    
    /**
     * 构造器
     * @param x 横坐标
     * @param y 纵坐标
     */
    public Point (double x,double y) {
//      this.x = x;
//      this.y = y;
        this.moveTo(x, y);
    }
    
    /**
     * 移动到
     * @param newX 新的横坐标
     * @param newY 新的纵坐标
     */
    public void moveTo(double newX,double newY){//移动到
        x = newX;
        y = newY;
    }
    
    /**
     * 移动了
     * @param dx 横坐标的增量
     * @param dy 纵坐标的增量
     */
    public void moveBy(double dx,double dy){//移动了
        x += dx;
        y += dy;
    }
    
    /**
     * 计算到另一个点的距离
     * @param other 另一个点
     * @return 两个点的距离
     */
    public double distanceTo(Point other){
        //this到other的距离
        double dx = this.x - other.x;
        double dy = this.y - other.y;
        return Math.sqrt(dx * dx + dy * dy);
    }
    
    @Override
    public String toString() {//可以将对象变成一个表达式
        return "(" + x + "," + y + ")";
    }
}
  • main 函数
public class PointTest {

    public static void main(String[] args) {
        Point p1 = new Point(3.1, 5.2);
        System.out.println(p1);//不用谢p1.toString。会自动调用
        Point p2 = new Point(-2.3,-3.5);
        System.out.println(p2);
        System.out.println(p1.distanceTo(p2));
        p1.moveTo(1, 1);
        p2.moveTo(2, 2);
        System.out.println(p1.distanceTo(p2));
    }
}
6. 定义线段类,计算线段长度
  • 此类里面直接调用了Point类,可直接表示一个坐标
/**
 * 平面上的线条
 * @author apple
 *
 */
public class Line {

    private Point start;
    private Point end;
    
    /**
     * 构造器
     * @param start 线段的起点
     * @param end 线段的重点
     */
    public Line(Point start, Point end){
        this.start = start;
        this.end = end;
    }
    
    /**
     * 获取线段的长度
     * @return 线段的长度
     */
    public double length(){
        return start.distanceTo(end);
    }
}
  • main函数
public class LineTest {

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

推荐阅读更多精彩内容