Live data from Hacker News

Best modern language to learn object oriented programming

news.ycombinator.com

1–10 of 16 posts

Best modern language to learn object oriented programming

#1
I'm a programmer who was introduced first to the functional paradigm. I'd like to better understand the object programming paradigm.

In the past, people have suggested Smalltalk as the best medium for learning concepts central to OOP. However, I've found the tooling has regressed in recent decades to the extent that I find using the language unpleasant (please correct me if I'm wrong).

In your opinion, which modern language best (and most simply) serves as a vehicle for teaching concepts core to OOP? I have no strong preference whether the type system is static or dynamic.

Re: Best modern language to learn object oriented programming

#2
Ruby and Objective-C both have a strong Smalltalk lineage. You typically use the C part of Objective-C to perform basic operations like arithmetic and function calling -- if you know C already, it may be a more comfortable starting point, but it doesn't show off the power you get when every value is an object (and you can do things like add new numeric types while the system is running: http://lists.squeakfoundation.org/pipermail/squeak-dev/1998-...).

Re: Best modern language to learn object oriented programming

#5
post #3

Have you tried F#? Its multi-paradigm and might make some thingd clearer. You can later move to C# and onto others. :)

I've tried OCaml, which I absolutely loved. I'd considered approaching F# before, since the language seems promising from a functional perspective, but I'm skeptical of the multiparadigm claim. In your experience, is F#'s OOP support beginner friendly? Also, is there decent literature available on F# as an OOP language?

Re: Best modern language to learn object oriented programming

#8
I don't know if it's best, but I took on OOP in little bites:

- ECMAScript 5

Mixins, scopes, instance variables, and instantiation.

As a bonus, but not OOP, callbacks. It's a straight-forward language that's available abundance.

- Python

For it's class inheritance being easy to navigate. Instance variables, instantiation, method resolution order (MRO), mixins.

- C++

This is the hardest language I can think of. It does everything OOP, and more, including allowing for a lot of stuff that's not legible.

Despite that, it's a solid language.

Something that goes great with constraining the many features of C++ are https://google.github.io/styleguide/cppguide.html or https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines.

I think ES5 and Python are used very often and in terms of bang for the buck, give they cover a lot of the bread and butter OOP concepts.

Re: Best modern language to learn object oriented programming

#9
post #8

I don't know if it's best, but I took on OOP in little bites: - ECMAScript 5 Mixins, scopes, instance variables, and instantiation. As a bonus, but not OOP, callbacks. It's a straight-forward language that's available abundance. - Python For it's class inheritance being easy to navigate. Instance variables, instantiation, method resolution order (MRO), mixins. - C++ This is the hardest language I can think of. It doe…

C++ doesn't do everything OOP: it doesn't support the late bound message-send style OOP of Smalltalk at all. In particular, you can't implement #doesNotUnderstand: (http://wiki.c2.com/?DoesNotUnderstand) or replace one object with another unless they have a superclass-subclass relationship.

Re: Best modern language to learn object oriented programming

#10
The problem is that your programming is styled by the language you choose. If you decide to go down the route of python then the curse of consenting adults will paint the way you believe object-oriented programming should be done. Likewise if you select something like C++ or Java, then the curse of privacy will paint the way you think about object-oriented programming.

The curse of privacy dictates that the existence of a public method will act as documentation for an object. methods only exists for the purpose of Performing operations on that objects type. This will make you think a lot more about how objects systems provide secure and well dictated data flow. Your objects will be authored to respect these ideas.

The curse of consenting adults dictates that human readable code trumps control flow. The idea of inheriting from a dictionary in Python to Define your own class object makes for extremely powerful objects that are immediately designed to interface with the Python language. There however may be operations that can be applied to dictionaries that you may not want applied to your objects.

If you really want to understand object-oriented programming, then you should use both. You should find as many programming languages as possible and explore how their idioms paint the color of your code.

I expect this isn't a preferred answer, but the real message is if you pick one and learn it, don't stop there. It will take you time to become comfortable enough to Warrant breaking into another language.

That all being said, python and ruby are easier as a programming languages (in general) than many Alternatives. So if you have to learn programming at the same time as object-oriented programming they aren't bad choices.

Post reply on HN