程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> J2SE >> J2SE綜合:對Final的一點認識(3)

J2SE綜合:對Final的一點認識(3)

編輯:J2SE

3)我的測試程序FinalDemo.Java
 
package zy.pro.jbd.demo;
 /**
 * this demo is created to test the usage of the final reserved Word
 */
 import zy.pro.jbd.testbase.A;
 public class FinalDemo {
 final int numInt1 = 16;
 final String str = "zy";
 final String str1;
 final A a = new A();
 public FinalDemo() {
 str1 = "zy";
 }
 public static void main(String[] args) {
 System.out.println("-------------------------------------------------");
 FinalDemo fd = new FinalDemo();
 fd.executeFinalTest();
 }
 public void executeFinalTest() {
 this.testFinalInt();
 this.testFinalString();
 this.testFinalObject();
 }
 private void testFinalInt() {
 //numInt1+=1;
 System.out.println(numInt1);
 }
 private void testFinalString() {
 //str=str+"aaaaa";
 System.out.println(str);
 }
 public void testFinalObject() {
 a.setT(29);
 System.out.println("t:   " + a.getT());
 /*
 * some error will be threw
 A b=new A();
 a=b;
 */
 }
 }

本文來自編程入門網:http://www.bianceng.cn/Programming/Java/201107/27859_3.htm

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved