+ 2
Which paradigm do you prefer?
If you've programmed in multiple paradigms, which is your favorite one? Also, do you prefer statically or dynamically typed languages, explicit or implicit? As for me: My fav paradigm is definetly OOP (plus declarative for things like HTML and XAML). I prefer static type systems, but I'm also fine with dynamic ones. If I have the choice between explicit and implicit, I choose explicit in most cases. Syntactic sugar is still a nice thing.
1 Réponse
0
I also prefer OOP with a lot of abstract classes and interfaces. Also generics or templates are great for code reuse. Ofcourse I prefer explicit, implicit typing and things like functional programming are really powerful for that 100 line example to impress your internet friends. But when you have to update that 10000 line application you wrote last year, you want OOP and explicit typing ;-)