标签:text rgs 中国 ace ade images imp 说明 title
第六章主要内容
A、public int f(){return 100+M;}
B、int f(){return 100;}
C、public double f(){return 2.6;}
D、public abstract int f();
interface Com{
int M = 200;
int f();
}
class ImpCom implements Com{
【代码】
}
interface Animal1{
void cry();
String getAnimalName();
}
class Dog1 implements Animal1{
public void cry(){
System.out.println("汪汪汪……");
}
public String getAnimalName(){
return "Dog";
}
}
class Cat1 implements Animal1{
public void cry(){
System.out.println("喵喵喵……");
}
public String getAnimalName(){
return "Cat";
}
}
class Simulator1{
void playSound(Animal1 animal){
animal.cry();
System.out.println(animal.getAnimalName());
}
}
public class ex4{
public static void main(String[] args) {
//Animal1 an = new Dog1();
//Animal1 ani = new Cat1();
Simulator1 sim = new Simulator1();
sim.playSound(new Dog1());
sim.playSound(new Cat1());
}
}
运行结果截图:
第六章的内容也较少,有了上一周的教训,我周二就开始看了,时间上都还比较充裕,看的也比较透彻。我觉得这周的学习质量还是挺高的。
代码行数(新增/累积) | 博客量(新增/累积) | 学习时间(新增/累积) | 重要成长 | |
---|---|---|---|---|
目标 | 5000行 | 30篇 | 400小时 | |
第一周 | 13/13 | 1/4 | 23/23 | |
第二周 | 317/330 | 1/5 | 22/45 | |
第三周 | 703/1044 | 1/6 | 31/76 | |
第四周 | 1263/2094 | 2/8 | 18/84 | |
第五周 | 1263/2094 | 3/11 | 18/84 |
计划学习时间:23小时
实际学习时间:24小时
改进情况:合理安排时间,充分利用碎片时间。
标签:text rgs 中国 ace ade images imp 说明 title
原文地址:https://www.cnblogs.com/xiannvyeye/p/10605497.html