Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C# C# Objects Object-Oriented Programming Object-Oriented Programming

Object-oriented and Functional Programming

What is the difference between object-oriented and functional programming?

1 Answer

Steven Parker
Steven Parker
229,670 Points

Conventionally, the Object-Oriented paradigm is considered most suited to programs that focus on data ("things"), and Functional Programming is best when the focus is on processes. But this is an over-simplification and real-world situations rarely can be easily identified as entirely one or the other.

Author Richard Warburton suggests that as these programming paradigms evolve, they are actually moving closer toward one another. The differences and similarities are discussed in a free e-book available from O'Reilly publishers titled Object-Oriented vs. Functional Programming.