what's OOP's jargons and complexities?

Dan Perl danperl at rogers.com
Fri Jan 28 18:44:14 EST 2005


"Dan Perl" <danperl at rogers.com> wrote in message 
news:U9udnT2lOZ7rUGfcRVn-uA at rogers.com...
> Actually, it can be as simple as:
> public class test {
>    public static void main(String[] args) {
>        String c = new String("a string"+" another one");
>        System.out.println(c);
>    }
> }

I forgot.  It can be even simpler:

public class test {
    public static void main(String[] args) {
        System.out.println("a string"+" another one");
    }
} 





More information about the Python-list mailing list