Tuesday, June 1, 2010

purpose of java static class

I have updated in http://www.freejavaclass.com/

Static classes are typically used as a convenient way to group related classes without creating a new package.

No comments:

Post a Comment

How can instantiate Java interface without implementing.

public interface Foo { String method(); } public class Claaa {    public static void main(String[] args) {     Foo fooByIC...