Hacker News new | ask | show | jobs
by chongli 1452 days ago
That's a very good point. People think of functional programming languages and OOP languages as entirely separate worlds that, like oil and water, do not mix. In reality they're equivalent, they just have different ergonomics.

For example, lambdas can be translated to anonymous inner classes.

1 comments

>For example, lambdas can be translated to anonymous inner classes.

That's how Java 8 more or less implements them, no?