Java基础知识

JAVA在编程的过程中是字节码形式,在JVM上编程,JVM可以跨平台,那么,JAVA也可以跨平台。

构造方法:是一种特殊的方法,是用来创建对象时初始化对象即为对象成员变量赋初始值。

题目:

1、设计一个动物类。

2.至少包括两个属性,和方法重载

请设计出标准的动物类,并讨论

/**
 * 测试类
 * 
 * @author lenovo64
 *这只小狗是小白,白色正在和那只小猫叫做小黑,黑色在打架
 *获胜的动物是黑色
 */
public class Test {
	public static void main(String[] args) {

		Animal dog = new Animal("小黑", "小猫", "黑色");
		Animal cat = new Animal("小白", "小狗", "白色");
		String s = dog.play(cat, dog);
		System.out.println("获胜的动物是" + s);
	}
}

class Animal {
	String name;
	String kind;
	int age;
	String color;
	long animalID;
	String date;

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

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

	public Animal(String name, int age, long animalID) {
		this.age = age;
		this.animalID = animalID;
	}

	public String play(Animal dog, Animal cat) {
		System.out.println("这只" + dog.color + "是" + dog.name + "," + dog.kind + ",正在和那只" + cat.color + "叫做" + cat.name
				+ "," + cat.kind + ",在打架");
		return cat.kind;
	}
}
package com.zjm.www.day10;
/**+
 * 
 * 动物练习
 * @author Zjm
 *
 */
public class Ex_animal {

	public static void main(String[] args) {
		// TODO Auto-generated method stub

		Animal an1 = new Animal("兔子","草",5);
		Animal an2 = new Animal();
		Animal an3 = new Animal(an1,an2);
		an2.all(an3);
	}
}
class Animal{
	String name;
	String eat;
	int weight;
	public Animal() {
		this.name = name;
		this.eat = "猪蹄";
		this.weight = 12;
	}
	public Animal(Animal a,Animal b) {
		this.name = b.name;
		this.eat = a.eat;
		this.weight = b.weight;
		
	}
	public Animal(String name,String eat,int weight) {
		this.name = name;
		this.eat = eat;
		this.weight = weight;
	}
	public Animal(String name,int weight) {
		this.name = name;
		this.weight = weight;
	}
	public void eat1() {
		System.out.println("这个动物喜欢吃" + this.eat);
	}
	public void run() {
		System.out.println("这个动物会跑");
	}
	public void all(Animal an) {
		System.out.println("这是一只 " + this.name + ",它喜欢吃 " + an.eat + ",它重 " + an.weight +" 斤");
	}
}
代码:
package com.lenovo.ww.dome;

public class Cat {
	String  colour;
    double weight;
    double higher;
    private String figure;
    
    public Cat(String color) {
    }
    public Cat(String figure,double weight) {
    }
    public Cat(String color,String figure) {
    this.colour = color;
    this.figure= figure;
    }
    public void eat(Cat cat){
    System.out.println("一只"+colour+cat.figure+"猫正在吃鱼");
    }
    public void Tumble(){
        System.out.println("猫正在打滚");
        }
        public void Shit(){
        System.out.println("猫正在拉便便");
        }
        public void fallInLove(){
        System.out.println("猫正在谈恋爱");
        }
        public void bathe(){
        System.out.println("猫正在洗澡");
        }
   }



package com.lenovo.ww.dome;
/**
 * 
 * @author lenovo
 *
 */

public class Test2 {
	public static void main(String[] args) {
		Cat cat = new Cat("屎黄色","又长又胖");
		Cat cat1 = new Cat("柠檬黄色","又短又瘦");
		cat.eat(cat1);
		}
   }





评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值