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.
- 3What if the idiomatic way is to use static methods?Ixrec– Ixrec2016-04-18 22:44:39 +00:00Commented Apr 18, 2016 at 22:44
- 1Is there a reason you don't like objects that only hang out long enough to do their duty?user53141– user531412016-04-18 22:47:23 +00:00Commented Apr 18, 2016 at 22:47
- 4Seems like just a rant against OO. One thing you could do differently with OO would be to take the input in the constructor and then have the object represent the parsed state. There are probably a lot of useful things you could do by holding the final parsed state and writing member functions against it.Matthew James Briggs– Matthew James Briggs2016-04-18 23:37:50 +00:00Commented Apr 18, 2016 at 23:37
- 1You can still use a single object with an instance method, without requiring that the object be reset each use (and is also thread safe, fwiw). Such a method simply holds no state in the object, using the stack (auto variables) instead. This way we can avoid some of the well-known problems with statics, namely around testability, tight coupling/substitutability, injection/inversion.Erik Eidt– Erik Eidt2016-04-18 23:59:35 +00:00Commented Apr 18, 2016 at 23:59
- 2Oh, that's an easy one. Static methods exist precisely so that you don't have to do prototypical OOP in the usual OOP language suspects. Nothing prevents you from using static methods all day long to write procedural code, except perhaps irritating the OOP pedants. Most of the modern OOP languages are multi-paradigm anyway; C# is actually "object-functional."Robert Harvey– Robert Harvey2016-04-19 03:57:30 +00:00Commented Apr 19, 2016 at 3:57
| Show 6 more comments
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