Sujet : Re: What is OOP?
De : chris.m.thomasson.1 (at) *nospam* gmail.com (Chris M. Thomasson)
Groupes : comp.lang.c++Date : 02. Dec 2024, 05:11:07
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vijc0r$33fek$2@dont-email.me>
References : 1
User-Agent : Mozilla Thunderbird
On 12/1/2024 9:17 AM, wij wrote:
There are several understandings:
https://www.quora.com/As-an-experienced-OOP-programmer-in-your-opinion-whats-the-biggest-problem-of-OOP-object-oriented-programming
...
OO can have many meaning. I took OO to mean object, the basic entity of the
programming model and the operation of the object. The concept, as foundmental,
has to be solid, practical and easily usable. Otherwise, more codes and efforts
will be needed latter to fix it, making the original goal ,practically, a lie.
IOW, (nearly) a flawless model is all the basics. ...
https://sourceforge.net/projects/cscall/files/MisFiles/ClassGuidelines.txt/download
[...]
struct object
{
// [...]
void do_it();
void wink();
void laugh();
void pose();
};
? OOP right there in a sense?