Hacker News new | past | comments | ask | show | jobs | submit login

i can't remember who said it, but its been claimed java isn't even an oop: its more class oriented programming...

i.e your not really dealing with objects all the time like in smalltalk but just "blueprints" that are a far shadow of what things should be (if i remember the claim correctly)




Everything is literally a descendant of Object...


Yes, and in Java, capital-O Object is primarily used as a class, not as an object that you work with directly!

Alan Kay himself said he regrets coining the term as "object" oriented, and wishes he had emphasized "messages":

https://wiki.c2.com/?AlanKayOnMessaging


And Object, in this case (big O), is the name of a class.

Not everything is an object, as someone said, there are also primitives.

There are many other "things" in Java that are not objects (operators, statements, etc.).

Kotlin does set some of this straight. Everything inherits (indirectly) from the Any class. And primitives do not exist in Kotlin (as in Ruby or Smalltalk).


Havent used Java for ages but are ints amd double for example really objects? Iirc they are primitives


Those types exist as both classes and primitive types. Eg, "double" (primitive) vs "Double" (class which inherits from Object).


James Coplien


yes, that was it thanks!




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: