Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Review Suggested Edit

You can't approve or reject suggested edits because you haven't yet earned the Edit Posts ability.

Approved.
This suggested edit was approved and applied to the post about 2 years ago by Olin Lathrop‭.

0 / 255
  • <i>Object</i> and <i>Class</i> aren't necessarily the same thing. Back in the 1980's when object oriented programming started to be talked about by practicing software engineers writing real production code, the word "class" didn't come up much. That got popularized by C++ and Java, where class actually has a specific meaning.
  • In it's basic form, object oriented programming is a means of tying a group of subroutines to the template of a data structure. You could have different instances of these structures, and the routines appeared to belong to these structures. Instead of calling a routine to add 5 to some number, the object oriented way is to tell the number to <i>"go add 5 to yourself"</i>. The compiler would be aware of this. It would generate code to call the add-5 routine and pass the specific data to act upon in a standard way.
  • Note that the above doesn't require anything called a "class". Java and C++ made this basic concept popular with built-in support, added additional constructs around it, and used names like "class" and "method". Young-uns today that never had to trudge to school barefoot in the snow uphill both ways forget that these concepts weren't engraved on stone tablets handed to us via some mystic ritual.
  • Various names in computing were used in different ways, especially early on. Often what we have today is the names used by one popular implementation. That doesn't make it the only right way in the general world of computer science.
  • <i>Object</i> and <i>Class</i> aren't necessarily the same thing. Back in the 1980's when object oriented programming started to be talked about by practicing software engineers writing real production code, the word "class" didn't come up much. That got popularized by C++ and Java, where class actually has a specific meaning.
  • In its basic form, object oriented programming is a means of tying a group of subroutines to the template of a data structure. You could have different instances of these structures, and the routines appeared to belong to these structures. Instead of calling a routine to add 5 to some number, the object oriented way is to tell the number to <i>"go add 5 to yourself"</i>. The compiler would be aware of this. It would generate code to call the add-5 routine and pass the specific data to act upon in a standard way.
  • Note that the above doesn't require anything called a "class". Java and C++ made this basic concept popular with built-in support, added additional constructs around it, and used names like "class" and "method". Young-uns today that never had to trudge to school barefoot in the snow uphill both ways forget that these concepts weren't engraved on stone tablets handed to us via some mystic ritual.
  • Various names in computing were used in different ways, especially early on. Often what we have today is the names used by one popular implementation. That doesn't make it the only right way in the general world of computer science.

Suggested about 2 years ago by Canina‭