Deutsch English Français Italiano |
<vijc0r$33fek$2@dont-email.me> View for Bookmarking (what is this?) Look up another Usenet article |
Path: ...!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> Newsgroups: comp.lang.c++ Subject: Re: What is OOP? Date: Sun, 1 Dec 2024 20:11:07 -0800 Organization: A noiseless patient Spider Lines: 26 Message-ID: <vijc0r$33fek$2@dont-email.me> References: <d8a5a0d563f0b9b78b34711d12d4975a7941f53a.camel@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Injection-Date: Mon, 02 Dec 2024 05:11:08 +0100 (CET) Injection-Info: dont-email.me; posting-host="17232c29395538db7d47c3a356e5c0c8"; logging-data="3259860"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18DJqxwI9YNYh2H0SDicWT8BodECOsIOp0=" User-Agent: Mozilla Thunderbird Cancel-Lock: sha1:8QxNk+a4bjVzZFfIHRkEYglrjjg= In-Reply-To: <d8a5a0d563f0b9b78b34711d12d4975a7941f53a.camel@gmail.com> Content-Language: en-US Bytes: 1890 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?