博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第十六章----面向对象(宠物乱斗之主面板)
阅读量:4974 次
发布时间:2019-06-12

本文共 4800 字,大约阅读时间需要 16 分钟。

  学完了面向对象,赵老师让做一个电子宠物,对于我这样的游戏迷来说,就忍不住做一个好玩的小游戏出来,于是,便运用目前所学的知识,经过了大概3到4天的时间,克服了重重困难,无数次修改,不断的修复BUG,不断的实现新的功能,不断的推翻重写,唉,终于做出了一个终极版。在此,记录一下。

package com.maya.chongwu;import java.util.Scanner;public class Main {    public static String a;/*a,b,c,用来给创建的角色起名字。d用来决定角色的生肖*/    public static String b;    public static String c;    public static int d;    /*数组酷*/    public static String[] qian = { "国服第一", "撒腿就跑", "万夫莫开", "一个打俩", "唧唧歪歪", "毁天灭地", "横扫幼儿园", "倒立吹牛", "你皮任你皮", "炸天炸地" };    public static String[] qianzhui = { "哮天", "吞天", "吃屎", "六臂神", "九头多动", "中二", "瓜皮", "坑爹", "我是", "智障", "程序", "皮皮", "干炸脆皮",            "求打死", "霸王" };    public static String houzhui[] = { "鼠", "牛", "虎", "兔", "龙", "蛇", "马", "羊", "猴", "鸡", "狗", "猪" };    public static void main(String[] args) {        boolean lock = true;//锁        boolean flag = true;//锁        Pet pet=null;        Scanner scanner = new Scanner(System.in);//用来为控制台输入创建对象        do {            /*用来控制只运行一次*/            if (lock) {                                                            System.out.println("正在为你随机生成宠物类型...");                try {                    Thread.sleep(2000);//休眠2秒                } catch (InterruptedException e) {                                        e.printStackTrace();                }                a=qian[(int) Math.floor(Math.random() * 10)];                b=qianzhui[(int) Math.floor(Math.random() * 15)];                d=(int)Math.floor((Math.random() * 12));                c=houzhui[d];                try {                    Thread.sleep(2000);                } catch (InterruptedException e) {                                        e.printStackTrace();                }                System.out.println( a+ b+ c);                try {                    Thread.sleep(2000);                } catch (InterruptedException e) {                                        e.printStackTrace();                }                System.out.println("输入宠物的姓名和性别, 用逗号隔开...");                String info = scanner.nextLine();//输入的内容                String[] _info = info.split(",");                if(_info.length!=2) {                    System.out.println("信息录入出错 ! 程序停止");                    System.exit(0);                } else {                    if (d==0) {                        pet = new Shu(_info[0], _info[1]);                    }                     else if (d==1) {                        pet = new Niu(_info[0], _info[1]);                    }                    else if (d==2) {                        pet = new Hu(_info[0], _info[1]);                    }                    else if (d==3) {                        pet = new Tu(_info[0], _info[1]);                    }                    else if (d==4) {                        pet = new Long(_info[0], _info[1]);                    }                    else if (d==5) {                        pet = new She(_info[0], _info[1]);                    }                    else if (d==6) {                        pet = new Ma(_info[0], _info[1]);                    }                    else if (d==7) {                        pet = new Yang(_info[0], _info[1]);                    }                    else if (d==8) {                        pet = new Hou(_info[0], _info[1]);                    }                    else if (d==9) {                        pet = new Ji(_info[0], _info[1]);                    }                    else if (d==10) {                        pet = new Gou(_info[0], _info[1]);                    }                    else if (d==11) {                        pet = new Zhu(_info[0], _info[1]);                    }                }                pet.attribute();//随机属性                pet.sex();//性别影响属性                                            lock = false;                pet.printInfo();//打印信息                            }            try {                Thread.sleep(2000);            } catch (InterruptedException e) {                                e.printStackTrace();            }            System.out.println("选择要进行的操作:1--打印宠物信息, 2--吃饱了才能打得过, 3--吃颗草再战, 4--心情好才能暴击, 5--竞技场,6--退出");            String opera = scanner.nextLine();            if ("1".equals(opera)) {                pet.printInfo();            } else if ("2".equals(opera)) {                pet.eatFood();            } else if ("3".equals(opera)) {                pet.eatMidical();            } else if ("4".equals(opera)) {                pet.play();            }else if ("5".equals(opera)) {                pet.fight();             }             else if ("6".equals(opera)) {                System.out.println(pet.getName() + "说: 好困啊, 回去睡觉觉了...");                System.exit(0);                flag = false;            }                    } while (flag);        scanner.close();//释放那个啥    }}

 

转载于:https://www.cnblogs.com/yuanlaihenkuang/p/6896743.html

你可能感兴趣的文章
MySQL多实例安装
查看>>
用一个玩具例子说明基于视频的超分辨率重建的基本思想
查看>>
集训 D1T1 clique
查看>>
ContentProvider类的设计分析
查看>>
Codeforces 869E The Untended Antiquity
查看>>
boost 相关
查看>>
在Ubuntu Server下搭建LAMP环境
查看>>
Android开发详解之onTouch和onClick详解
查看>>
nodejs dateformat date-utils
查看>>
【sicily】卡片游戏
查看>>
日志系统:数据来源的思考
查看>>
第一次写代码总结
查看>>
[转帖] sparkdev 的 博客 systemd
查看>>
[cnbeta] 波音系列飞机价格。。。
查看>>
MSTSC 3389 端口修改
查看>>
Java数据类型的位数
查看>>
旁门左道通过JS与纯CSS实现显示隐藏层
查看>>
HDU 4313 Matrix(并查集)
查看>>
HDU 2546 饭卡(0-1背包)
查看>>
HDU 2426 Interesting Housing Problem(二分图最佳匹配)
查看>>