小白日记2

1,什么是类?     类是具有相同属性和方法的一组对象的集合。

2,什么是对象?    描述客观事物的实体,由一组属性和方法构成。

3,方法和属性是什么?    1)属性:对象具有的各种特征   2)方法:对象执行的操作

4,什么是方法重载?    

  我们将名字相同,参数列表不同的两个(或多个)方法
    参数列表的不同体现在以下两点:
    1 参数的类型不同
    2 参数的个数不同
    方法参数列表的不同,是编译器用来区分调用哪一个   重载方法的依据。

    称为重载方法。
class   MethodOverloading {

void  receive( int  i) {
         System.out.println( "Received one int data" );
         System.out.println( "i=" +i);
     }
     
     void  receive( float  f) {
         System.out.println( "Received one float data" );
         System.out.println( "f=" +f);
     }
     
     void  receive(String s) {
         System.out.println( "Received a String" );
         System.out.println( "s=" +s);
     }
     
     public  static  void  main(String [] args){
         MethodOverloadind

5,ecilpes的快捷键:1,Ctrl+/  = 注释    2,Ctrl+Shift+F = 排版   3,Ctrl+Shift+S = 保存  4,Ctrl+W = 关闭当前的Editer

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

7,构造方法代码1):

/**

 * 测试类
 * 
 * @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;

}

2):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 +" 斤");
}
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值