zoukankan      html  css  js  c++  java
  • Java:references initialized

    If you want the references initialized,you can do it:

      1.At the point the objects are defined.This means that they'll always be initialized before the constructor is called

      2.In the constructor for the class

      3.Right before you actually need to use the object.This is often called lazy initialization. It can reduce overhead in situations where object creation is expensive and the object doesn't need to be created every time.

      4.Using instance initialization

    All four approachs are shown here:

     1 class Soap {
     2     private String s;
     3 
     4     Soap() {
     5         System.out.println("Soap()");
     6         s = "constructed";
     7     }
     8 
     9     public String toString() {
    10         return s;
    11     }
    12 }
    13 
    14 public class Bath {
    15     private String // Initializing at point of definition
    16             s1 = "Happy",
    17             s2 = "happy", 
    18             s3, s4;
    19     private Soap castille;
    20     private int i;
    21     private float toy;
    22 
    23     public Bath() {
    24         System.out.println("inside Bath()");
    25         s3 = "joy";
    26         toy = 3.14f;
    27         castille = new Soap();
    28     }
    29 
    30     // Instance initialization
    31     {
    32         i = 47;
    33     }
    34 
    35     public String toString() {
    36         if (s4 == null)// Delayed initialization
    37             s4 = "joy";
    38         return "s1=" + s1 + "
    " + 
    39                 "s2=" + s2 + "
    " + 
    40                 "s3=" + s3 + "
    "+ 
    41                 "s4=" + s4 + "
    " + 
    42                 "i=" + i + "
    " + 
    43                 "toy=" + toy + "
    "+ 
    44                 "castille=" + castille + "
    ";
    45     }
    46 
    47     public static void main(String[] args) {
    48         Bath b = new Bath();
    49         System.out.println(b);
    50     }
    51 }

    输出

    1 inside Bath()
    2 Soap()
    3 s1=Happy
    4 s2=happy
    5 s3=joy
    6 s4=joy
    7 i=47
    8 toy=3.14
    9 castille=constructed

    Note that in the Bath constructor,a statement is executed before any of the initializations take place. When you don't initialize at the point of definition, there is still no guarantee that you'll preform any initialization before you send a message to an object reference--except for the inevitable runtime exception.

    When toString() is called it fills in s4 so that all the fields are properly initialized by the time they are ued. 

  • 相关阅读:
    win7下命令行添加系统服务
    java执行cmd命令
    grails-BuildConfig.groovy中grails.war.resources
    密码学
    Grails框架优劣势
    groovy+idea+Maven项目加载自身jar包
    cmd查看我的电脑盘符和文件
    MySQL insert插入
    MySQL截取字符串函数方法
    mysql 替换语句
  • 原文地址:https://www.cnblogs.com/taoxiuxia/p/4445026.html
Copyright © 2011-2022 走看看