A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

第2章 匿名对象&final

1.1 匿名对象定义&使用
   匿名对象即无名对象,直接使用new关键字来创建对象
1.1.1 案例代码九:
[AppleScript] 纯文本查看 复制代码
 package com.itheima_01;
/*
 * 匿名对象:没有名字的对象
 * 匿名对象的应用场景:
 * 当方法只调用一次的时候可以使用匿名对象
 * 可以当作参数进行传递,但是无法在传参之前做其他的事情
 *
 * 注意:匿名对象可以调用成员变量并赋值,但是赋值并没有意义
 *
 */
public class AnonymousObejctDemo {
public static void main(String[] args) {
//Student s = new Student();
//s.study();
//s.study();
//s.study();
//new Student();//匿名对象,没有变量引用的对象
//new Student().study();
//new Student().study();
//new Student().study();
//new Student().age = 18;
//System.out.println(new Student().age);
//Student s = new Student();
//s.age = 18;
//s.name = "张三";
//method(s);
method(new Student());
}
public static void method(Student s) {
}
 
}
 
 
class Student {
String name;
int age;
public void study() {
System.out.println("好好学习,高薪就业");
}
}
1.2 final关键字
   final: 修饰符,可以用于修饰类、成员方法和成员变量
   final所修饰的类:不能被继承,不能有子类
   final所修饰的方法:不能被重写
   final所修饰的变量:是不可以修改的,是常量
1.2.1 案例代码十:
[AppleScript] 纯文本查看 复制代码
   package com.itheima_01;
/*
 * final: 修饰符,可以用于修饰类、成员方法和成员变量
 * final所修饰的类:不能被继承,不能有子类
 * final所修饰的方法:不能被重写
 * final所修饰的变量:是不可以修改的,是常量
 *
 * 常量:
 * 字面值常量:1,2,3
 * 自定义常量:被final所修饰的成员变量,一旦初始化则不可改变
 *
 * 注意:自定义常量必须初始化,可以选择显示初始化或者构造初始化
 *
 *  
 */
public class FinalDemo {
public static void main(String[] args) {
//Animal a = new Animal();
//a.eat();
Dog d = new Dog();
//d.eat();
//d.num = 20;
System.out.println(d.NUM);
}
}
 
/*final*/ class Animal {
public final void eat() {
System.out.println("吃东西");
}
}
 
class Dog extends Animal {
/*public void eat() {}*/
final int NUM;
public Dog() {
NUM = 10;
}
}
 
更多
第一天
传智播客·黑马程序员郑州校区地址
河南省郑州市 高新区长椿路11号大学科技园(西区)东门8号楼三层
联系电话 0371-56061160/61/62
来校路线  地铁一号线梧桐街站A口出

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马