i'm looking for a language that does object-oriented well. speed isn't a huge concern, portability would be nice.
Name:
Anonymous2007-04-08 1:09 ID:xA3ujsdv
>>4
There are 3 main things that form the core of OO: inheritance, encapsulation, and polymorphism. Once you've learned those, you're in a good position to judge if and when you should use it.
OO's no panacea, but it can help to organise your program design and reduce the temptation to copypasta similar blocks of code.