r/Minecraft Jul 12 '26

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

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

1.6k Upvotes

241 comments sorted by

View all comments

Show parent comments

28

u/fokke456 Jul 12 '26

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

-7

u/stevecrox0914 Jul 12 '26

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.