KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > ConstructorsAreMethods3


1 package test;
2
3 import java.util.HashSet JavaDoc;
4
5 public class ConstructorsAreMethods3 {
6     
7     public ConstructorsAreMethods3() {
8         new HashSet JavaDoc<String JavaDoc>();
9     }
10     
11 }
12
Popular Tags