|
Re: As Simple As Possible?
|
Posted: Sep 6, 2005 4:54 PM
|
|
> I don't quite see it that way. At the collee I teach at, > we switched back to C++ from Java for beginners because > Java forces objects on you too soon. I find it easier to > start where students are at (everyone and do simple > arithmetic and use library components such as vector and > string), and introduce objects after they have grasp the > idea of simple programs. Of course, Python is ideal for > this.
I don't really get your comment, Java does automatic boxing an unboxing therefore you can use Integer, List< Integer > etc. including arithmetic (the only infix operator not available is ==). I am not sure what Python does but many scripting languages work the same way as Java and do automatic boxing and unboxing, so this is no different.
|
|