Why C# is not allowing non-member functions like C++ - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T11:33:57Zhttp://stackoverflow.com/feeds/question/1024171http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1024171/why-c-is-not-allowing-non-member-functions-like-c14Why C# is not allowing non-member functions like C++Appu2009-06-21T15:39:59Z2009-06-24T16:33:19Z
<p>C# will not allow to write non-member functions and every method should be part of a class. I was thinking this as a restriction in all CLI languages. But I was wrong and I found that C++/CLI supports non-member functions. When it is compiled, compiler will make the method as member of some unnamed class.</p>
<p>Here is what C++/CLI standard says,</p>
<blockquote>
<p>[Note: Non-member functions are treated by the CLI as members of some unnamed class; however, in C++/CLI source code, such functions cannot be qualified explicitly with that class name. end note]</p>
<p>The encoding of non-member functions in metadata is unspecified. [Note: This does not cause interop problems because such functions cannot have public visibility. end note]</p>
</blockquote>
<p>So my question is why don't C# implement something like this? Or do you think there should not be non-member functions and every method should belong to some class? </p>
<p>My opinion is to have non-member function support and it helps to avoid polluting class's interface. </p>
<p>Any thoughts..?</p>
http://stackoverflow.com/questions/1024171/why-c-is-not-allowing-non-member-functions-like-c/1024180#102418012Answer by Jon Skeet for Why C# is not allowing non-member functions like C++Jon Skeet2009-06-21T15:44:39Z2009-06-21T15:44:39Z<p>What's the benefit of <em>not</em> putting each method in a named class? Why would a non-member function "pollute" the class's interface? If you don't want it as part of the public API of a class, either don't make it public or don't put it in that class. You can always create a different class.</p>
<p>I can't remember ever wanting to write a method floating around with no appropriate scope - other than anonymous functions, of course (which aren't really the same).</p>
<p>In short, I can't see any benefit in non-member functions, but I can see benefits in terms of consistency, naming and documentation in putting all methods in an appropriately named class.</p>
http://stackoverflow.com/questions/1024171/why-c-is-not-allowing-non-member-functions-like-c/1024182#10241820Answer by pass_the_clock for Why C# is not allowing non-member functions like C++pass_the_clock2009-06-21T15:46:16Z2009-06-21T15:46:16Z<p>C# was designed to be a "pure" object-oriented programming language so non-member functions were purposefully designed out. </p>
http://stackoverflow.com/questions/1024171/why-c-is-not-allowing-non-member-functions-like-c/1024183#10241834Answer by Earwicker for Why C# is not allowing non-member functions like C++Earwicker2009-06-21T15:46:18Z2009-06-21T15:54:28Z<p>The CLS (common language specification) says that you shouldn't have non-member functions in a library that conforms to the CLS. It's like an extra set of restrictions in addition to the basic restrictions of the CLI (common language interface).</p>
<p>It is possible that a future version of C# will add the ability to write a <code>using</code> directive that allows the static members of a class to be accessed without the class name qualification:</p>
<pre><code>using System.Linq.Enumerable; // Enumerable is a static class
...
IEnumerable<int> range = Range(1, 10); // finds Enumerable.Range
</code></pre>
<p>Then there will be no need to change the CLS and existing libraries.</p>
<p><a href="http://blogs.msdn.com/lucabol/archive/2008/04/08/a-c-library-to-write-functional-code-part-ii-tuples.aspx" rel="nofollow">These blog posts demonstrate a library</a> for functional programming in C#, and they use a class name that is just one letter long, to try and cut down the noise caused by the requirement to qualify static method calls. Examples like that would be made a little nicer if <code>using</code> directives could target classes.</p>
http://stackoverflow.com/questions/1024171/why-c-is-not-allowing-non-member-functions-like-c/1024186#10241861Answer by Cade Roux for Why C# is not allowing non-member functions like C++Cade Roux2009-06-21T15:47:16Z2009-06-21T15:47:16Z<p>I think you really need to clarify what you would want to create non-member static methods to achieve.</p>
<p>For instance, some of the things you might want them for could be handled with <a href="http://msdn.microsoft.com/en-us/library/bb383977.aspx" rel="nofollow">Extension Methods</a></p>
<p>Another typical use (of a class which only contains static methods) is in a library. In this case, there is little harm in creating a class in an assembly which is entirely composed of static methods. It keeps them together, avoids naming collisions. After all, there are static methods in Math which serve the same purpose.</p>
<p>Also, you should not necessarily compare C++'s object model with C#. C++ is largely (but not perfectly) compatible with C, which didn't have a class system at all - so C++ had to support this programming idiom out of the C legacy, not for any particular design imperative.</p>
http://stackoverflow.com/questions/1024171/why-c-is-not-allowing-non-member-functions-like-c/1024201#10242013Answer by DTashkinov for Why C# is not allowing non-member functions like C++DTashkinov2009-06-21T15:55:28Z2009-06-21T16:04:46Z<p>Since Java, most programmers have easily accepted that any method is a member of a class. I doesn't make any considerable obstacles and make the concept of method more narrow, which make a language easier.</p>
<p>However, indeed, class infers object, and object infers state, so the concept of class containing only static methods looks a little absurd.</p>
http://stackoverflow.com/questions/1024171/why-c-is-not-allowing-non-member-functions-like-c/1024204#10242041Answer by cwap for Why C# is not allowing non-member functions like C++cwap2009-06-21T15:56:24Z2009-06-21T15:56:24Z<p>Static classes are just namespaces with access modifiers - Use those for all your global methoding needs :)</p>
http://stackoverflow.com/questions/1024171/why-c-is-not-allowing-non-member-functions-like-c/1024241#10242412Answer by Nemanja Trifunovic for Why C# is not allowing non-member functions like C++Nemanja Trifunovic2009-06-21T16:20:55Z2009-06-21T16:20:55Z<p>Non member functions are a good thing <a href="http://www.ddj.com/cpp/184401197" rel="nofollow">because they improve encapsulation</a> and reduce coupling between types. Most modern programming languages such as Haskell and F# support free functions.</p>
http://stackoverflow.com/questions/1024171/why-c-is-not-allowing-non-member-functions-like-c/1024257#102425715Answer by jalf for Why C# is not allowing non-member functions like C++jalf2009-06-21T16:25:23Z2009-06-21T16:37:35Z<p>C# doesn't allow it because Java didn't allow it. </p>
<p>I can think of several reasons why the designers of Java probably didn't allow it</p>
<ul>
<li>Java was designed to be simple. They attempted to make a language without random shortcuts, so that you generally have just one simple way to do everything, even if other approaches would have been cleaner or more concise. They wanted to minimize the learning curve, and learning "a class may contain methods" is simpler than "a class may contain methods, and functions may exist outside classes".</li>
<li>Superficially, it looks less object-oriented. (Anything that isn't part of an object obviously can't be object-oriented? Can it? of course, C++ says yes, but C++ wasn't involved in this decision)</li>
</ul>
<p>As I already said in comments, I think this is a good question, and there are plenty of cases where non-member functions would've been preferable. (this part is mostly a response to all the other answers saying "you don't need it")</p>
<p>In C++, where non-member functions are allowed, they are often preferred, for several reasons:</p>
<ul>
<li>It aids encapsulation. The fewer methods have access to the private members of a class, the easier that class will be to refactor or maintain. Encapsulation is an important part of OOP.</li>
<li>Code can be reused much easier when it is not part of a class. For example, the C++ standard library defines <code>std::find</code> or std::sort` as non-member functions, so that they can be reused on any type of sequences, whether it is arrays, sets, linked lists or (for std::find, at least) streams. Code reuse is also an important part of OOP.</li>
<li>It gives us better decoupling. The <code>find</code> function doesn't need to know about the LinkedList class in order to be able to work on it. If it had been defined as a member function, it would be a member of the LinkedList class, basically merging the two concepts into one big blob.</li>
<li>Extensibility. If you accept that the interface of a class is not just "all its public members", but also "all non-member functions that operate on the class", then it becomes possible to extend the interface of a class without having to edit or even recompile the class itself. </li>
</ul>
<p>The ability to have non-member functions may have originated with C (where you had no other choice), but in modern C++, it is a vital feature in its own right, not just for backward-comparibility purposes, but because of the simpler, cleaner and more reusable code it allows.</p>
<p>In fact, C# seems to have realized much the same things, much later. Why do you think extension methods were added? They are an attempt at achieving the above, while preserving the simple Java-like syntax.
Lambdas are also interesting examples, as they too are essentially small functions defined freely, not as members of any particular class. So yes, the concept of non-member functions is useful, and C#'s designers have realized the same thing. They've just tried to sneak the concept in through the back door.</p>
<p><a href="http://www.ddj.com/cpp/184401197" rel="nofollow">http://www.ddj.com/cpp/184401197</a> and <a href="http://www.gotw.ca/publications/mill02.htm" rel="nofollow">http://www.gotw.ca/publications/mill02.htm</a> are two articles written by C++ experts on the subject.</p>
http://stackoverflow.com/questions/1024171/why-c-is-not-allowing-non-member-functions-like-c/1024259#10242591Answer by Jason Baker for Why C# is not allowing non-member functions like C++Jason Baker2009-06-21T16:26:38Z2009-06-21T16:26:38Z<p>Bear something in mind: C++ is a much more complicated language than C#. And although they may be similiar syntactically, they are very different beasts semantically. You wouldn't think it would be terribly difficult to make a change like this, but I could see how it could be. ANTLR has a good wiki page called <a href="http://www.antlr.org/wiki/pages/viewpage.action?pageId=1773" rel="nofollow">What makes a language problem hard?</a> that's good to consult for questions like this. In this case:</p>
<blockquote>
<p>Context sensitive lexer? You can't decide what vocabulay symbol to match unless you know what kind of sentence you are parsing.</p>
</blockquote>
<p>Now instead of just worrying about functions defined in classes, we have to worry about functions defined outside classes. Conceptually, there isn't much difference. But in terms of lexing and parsing the code, now you have the added problem of having to say "if a function is outside a class, it belongs to this unnamed class. However, if it is inside the class, then it belongs to that class."</p>
<p>Also, if the compiler comes across a method like this:</p>
<pre><code>public void Foo()
{
Bar();
}
</code></pre>
<p>...it now has to answer the question "is Bar located within this class or is it a global class?"</p>
<blockquote>
<p>Forward or external references? I.e., multiple passes needed? Pascal has a "forward" reference to handle intra-file procedure references, but references to procedures in other files via the USES clauses etc... require special handling.</p>
</blockquote>
<p>This is another thing that causes problems. Remember that C# doesn't require forward declarations. The compiler will make one pass just to determine what classes are named and what functions those classes contain. Now you have to worry about finding classes <em>and</em> functions where functions can be either inside or outside of a class. This is something a C++ parser doesn't have to worry about as it parses everything in order.</p>
<p>Now don't get me wrong, it could probably be done in C#, and I would probably use such a feature. But is it really worth all the trouble of overcoming these obstacles when you could just type a class name in front of a static method?</p>
http://stackoverflow.com/questions/1024171/why-c-is-not-allowing-non-member-functions-like-c/1024278#10242783Answer by Yuliy for Why C# is not allowing non-member functions like C++Yuliy2009-06-21T16:32:51Z2009-06-21T16:32:51Z<ul><li>Having all code lie within classes allows for a more powerful set of reflection capabilities.
</li><li>It allows the use of static intializers, which can initialize the data needed by static methods within a class.</li>
<li>It avoids name clashes between methods by explicitly enclosing them within a unit that cannot be added to by another compilation unit.</li></ul>
http://stackoverflow.com/questions/1024171/why-c-is-not-allowing-non-member-functions-like-c/1027853#102785347Answer by Eric Lippert for Why C# is not allowing non-member functions like C++Eric Lippert2009-06-22T15:29:46Z2009-06-24T16:33:19Z<p>First of all: A number of the other answers make speculative claims about what the language designers were thinking, but present those speculative claims as facts. <strong>I would personally appreciate it if speculative claims about the mental states of myself and my coworkers were presented as <em>educated guesses</em>, rather than as <em>facts</em>.</strong> I don't try to tell other people what <em>you</em> were thinking ten years ago.</p>
<p>To address the original poster's actual questions, see this blog posting:</p>
<p><a href="http://blogs.msdn.com/ericlippert/archive/2009/06/22/why-doesn-t-c-implement-top-level-methods.aspx" rel="nofollow">http://blogs.msdn.com/ericlippert/archive/2009/06/22/why-doesn-t-c-implement-top-level-methods.aspx</a></p>
<p>and this follow-up posting:</p>
<p><a href="http://blogs.msdn.com/ericlippert/archive/2009/06/24/it-already-is-a-scripting-language.aspx" rel="nofollow">http://blogs.msdn.com/ericlippert/archive/2009/06/24/it-already-is-a-scripting-language.aspx</a></p>