You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
- 2Can't believe this answer has no votes (well, you have one now). This might be a simple example, but when OO is abused enough you get service classes that turn into nightmares containing tons of functionality that should have been encapsulated in classes.Alb– Alb2012-02-28 17:21:25 +00:00Commented Feb 28, 2012 at 17:21
- "by old C/C++ programmers who have never made the transision (sic) to OO" ? C++ programmers usually are pretty OO, as it's an OO language, i.e. the whole point of using C++ instead of C.nappyfalcon– nappyfalcon2018-04-15 21:06:05 +00:00Commented Apr 15, 2018 at 21:06
- 1@nappyfalcon Writing code in an OO language doesn't necessarily make it OO code; many C++ programmers sure try for OO, but it should be clear that they don't automatically succeed. Also note C++ is general-purpose paradigm, not OO exclusively.geometrian– geometrian2022-10-22 12:50:51 +00:00Commented Oct 22, 2022 at 12:50
- @nappyfalcon C++ is also C and those old programmers actually made a transition from C to C++ by either transforming existing C code, at least to some degree, or starting new C++ projects with experience, habits, and a mindset rooting in C programming. A lot of beginner level C++ books started with the basics of C before they got to C++. There is nothing in the C++ language that forces you to write OO code. Even languages like Java just force you to put everything into classes, which doesn't automatically lead to OO code. On the other hand there is C code that is very much OO.BlackJack– BlackJack2022-12-05 14:14:41 +00:00Commented Dec 5, 2022 at 14:14
Add a comment |
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you
lang-java