Back to Java Users Group Home Print this page

Java Users Group

April 2004 Meeting Information

April 13, 2004
A First Look at J2SE 1.5

This month's meeting will be a first look at J2SE 1.5 with a focus on the most significant new feature: Generics. This, of course, is the use of templates like in C++. Here's a short example:
	LinkedList stringList = new LinkedList();
	stringList.add("ACGNJ");
	stringList.add("Java");
	stringList.add("Users");
	stringList.add("Group");
	for(String str : stringList)
		System.out.print(str + " ");

	// output
	ACGNJ Java Users Group

Meetings are held every second Tuesday of the month at the Scotch Plains Rescue Squad second floor meeting hall starting promptly at 7:30pm. Meetings are open to the public, and visitors are encouraged to join ACGNJ.

SIG Leader Mike Redlich
E-Mail mike@redlich.net
Phone: (908) 246-0410