Tuesday, June 1, 2010

What is the difference between Assignment and Initialization?

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

Assignment can be done as many times as desired whereas initialization can be done only once.

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