Tag oop

4 bookmarks have this tag.

2024-02-03

1092.

MVC vs. OOP

www.yegor256.com/2016/12/13/mvc-vs-oop.html

MVC is a very popular architectural design pattern that goes absolutely against the spirit of object-oriented programming.

Teehee.

2023-10-03

661.

objectionary/eo

github.com/objectionary/eo

EOLANG, an Experimental Object-Oriented Programming Language Based on 𝜑-calculus

2023-05-07

213.

Why OO Sucks by Joe Armstrong

harmful.cat-v.org/software/OO_programming/why_oo_sucks

My principle objection to OOP goes back to the basic ideas involved, I will outline some of these ideas and my objections to them.

Joe Armstrong is the creator of Erlang. He has 4 objections to OOP:

  1. He says functions and data structures are very different, so it's incorrect to bind them together. Feels like a weak argument to me.

  2. He somehow says that everything being an objects is wrong, and everything should be a different type instead. This is an even weaker argument.

  3. He dislikes that he can't put all the types in one file. Yeah, it's good you can't!

  4. And something incoherent about states.

I'm not the biggest fan of OOP myself, but this rant is just useless. I am keeping this bookmark just because the site looks cool.

212.

How do I know if I really need object oriented programming?

unixsheikh.com/articles/how-do-i-know-if-i-really-need-object-oriented-programming.html

It's easy to determine if you really need the object oriented paradigm, you just need to look for the things that you can only do with object oriented programming and then ask yourself whether you really need that. It's called "The Three Pillars of Object-Oriented Programming". If you don't use all three at the same time, then you're not doing object oriented programming and you don't need it.