Thinking in java 笔记(二) -- 初始化和销毁

    创建一个对象的过程(以对象Dog为例):

  1. The first time an object of type Dog is created (the constructor is actually a static method), or the first time a static method or static field of class Dog is accessed, the Java interpreter must locate Dog.class, which it does by searching through the classpath. Feedback
  2. As Dog.class is loaded (creating a Class object, which you’ll learn about later), all of its static initializers are run. Thus, static initialization takes place only once, as the Class object is loaded for the first time. Feedback
  3. When you create a new Dog( ), the construction process for a Dog object first allocates enough storage for a Dog object on the heap. Feedback
  4. This storage is wiped to zero, automatically setting all the primitives in that Dog object to their default values (zero for numbers and the equivalent for boolean and char) and the references to null. Feedback
  5. Any initializations that occur at the point of field definition are executed. Feedback
  6. Constructors are executed. As you shall see in Chapter 6, this might actually involve a fair amount of activity, especially when inheritance is involved. Feedback
    数组:
    int [] a;
    int a[];都可以,但是前者在java中用得多些。

  java垃圾回收机制(简要):
  java中一般情况下不需要手动清除内存,除非特殊的情况(比如调用native方法用C/C++创建的对象,需要在finanlize方法中用对应的方法销毁对象)

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值