SCJP Certification

Sun Certified Java Programmer Certification exam essentials

Posts Tagged ‘set’

November 16th, 2009

What will be the result while compiling and running the code?

No Comments, Java Questions, by Daisy Williams.

import java.util.EnumSet; public final class EnumMeg { public static void main(String[] args) { Integer i = null; method(i); } static…

Share

October 24th, 2009

What is the java.util.EnumSet set?

1 Comment, Uncategorized, by Daisy Williams.

The java.util.EnumSet set is a special purpose set. It is used to provide an implementation for better performance for enum…

Share

October 22nd, 2009

What is EnumMap?

No Comments, Java Facts, by Daisy Williams.

The java.util.EnumMap is a special purpose map. It is used to provide better performance for enum types than its general…

Share