Monday, May 31, 2010

What is UNICODE?

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

Unicode is used for internal representation of characters and strings and it uses 16 bits to represent each other.

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