Tuesday, June 1, 2010

What is the use of bin and lib in JDK?

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

Bin contains all tools such as javac, appletviewer, awt tool, etc., whereas lib contains API and all packages.

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...