KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > java > hints > InitializeVariable3


1 package org.netbeans.test.java.hints;
2
3 /**
4  * @author leon chiver
5  */

6 public class InitializeVariable3 {
7     
8     public InitializeVariable3() {
9         String JavaDoc[] str;
10         int i = str.length;
11     }
12     
13 }
14
Popular Tags