java
Steven Bethard
steven.bethard at gmail.com
Sat Sep 11 02:11:29 EDT 2004
Demo <demobudda <at> yahoo.com> writes:
>
> What computer science concepts can I learn from Java and not from Python?
Mainly, things that derive from static typing:
* Method overloading
* Interface declarations (there are ways to simulate this in Python, but the
effect is not identical)
* Checked exceptions (though I'm not convinced this is really something you
need to learn)
I'm sure there are more, but these're what jumped into my mind. Can't say I
really miss any of them. ;)
Steve
More information about the Python-list
mailing list