Java Conditional Compile – Java條件編譯

來源:互聯網
上載者:User
The conditional compilation practice is used to optionally remove chunks of code from the compiled version of a class. It uses the fact that compilers will ignore any unreachable branches of code. 

To implement conditional compilation, 

* define a static final boolean value as a non-private member of some class 
* place code which is to be conditionally compiled in an if block which evaluates the boolean 
* set the value of the boolean to false to cause the compiler to ignore the branch; otherwise, keep its value as true 

This practice is used mostly for implementing debugging statements, logging statements, and for assertions. With the advent of assert and the Logging API in JDK 1.4, the utility of conditional compilation is probably reduced. 

Example public final class Debug {
  //set to false to allow compiler to identify and eliminate
  //unreachable code
  public static final boolean ON = true;

import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;

/**
* Uses conditional compilation to optionally print debugging statements.
*/public final class GenericServlet extends HttpServlet {

  public void init(ServletConfig aConfig) throws ServletException {
    super.init(aConfig);

    //print out a message, but only if Debug.ON evaluates to true
    //if Debug.ON evaluates to false, this entire block of code will be
    //passed over by the compiler, and will not be present in output .class file
    if (Debug.ON) {
      System.out.println("**** INIT OF My Controller *****");
    }
  }

  public void doGet(HttpServletRequest aRequest, HttpServletResponse aResponse)
                                              throws ServletException, IOException {
    if (Debug.ON) {
      System.out.println("Processing doGet");
    }
    doHttpRequest(aRequest, aResponse);
  }

  public void doPost(HttpServletRequest aRequest, HttpServletResponse aResponse)
                                              throws ServletException, IOException {
    if (Debug.ON) {
      System.out.println("Processing doPost");
    }
    doHttpRequest(aRequest, aResponse);
  }

  /// PRIVATE /////

  private void doHttpRequest(HttpServletRequest aRequest, HttpServletResponse aResponse)
                                              throws ServletException, IOException {
     //empty
  }

}

 

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.