Skip to main content

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.

Required fields*

9
  • 14
    lots of up-votes. I will stop immediately. thank you. Commented Jan 16, 2013 at 18:09
  • 8
    In addition, you can't name constructors differently to explain your purpose, readers have to infer it from the parameters. Overloading the constructor this way makes it much harder to understand. Commented Jan 16, 2013 at 18:15
  • 3
    "Having multiple function names that do the same thing..." - for a 'good' time, look at Ruby's classes String Hash Array File. Commented Jan 16, 2013 at 18:42
  • +1. You are dealing with developers/programmers. Microsoft idea of "user is monkey", does not work here. Commented Jan 17, 2013 at 7:00
  • 1
    @ZacharyYates Lack of "constructor names" can be worked around by exposing a static construction methods instead. This is a standard practice in Java, although not so much in C++. Commented Jan 21, 2013 at 6:17