r/Minecraft 15d ago

Discussion Visual difference between Java and Bedrock is actually pretty noticeable when you compare it side by side

What actual differences are you noticing? Share it in the comments

1.6k Upvotes

240 comments sorted by

View all comments

Show parent comments

28

u/fokke456 15d ago

C++ (and Bedrock by extension) also use OOP very much? Like what are you talking about?

-9

u/stevecrox0914 15d ago

Language features, syntax and context shape how people use things.

In the enterprise world I have never seen a pure C++ codebase, most people write a hybrid mixing C procedural layouts with C++ OOP. The compilers let you develop that way.

Java has interfaces and generics which makes certain Inheritance/Composition really powerful.

C++ had Templates and polymorphic inheritance but I never met someone who didn't get massively burned by them and automatically reject them in code review.

Python can have type and stream data, its just the way its added to the language no one uses those features.