Object Oriented Design help from C++ to C# - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T16:00:43Z http://stackoverflow.com/feeds/question/303668 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/303668/object-oriented-design-help-from-c-to-c 1 Object Oriented Design help from C++ to C# Balk 2008-11-19T22:39:32Z 2008-11-19T22:49:54Z <p>Hey I usually run into a situation where I will create a class that should only be instantiated by one or a few classes. In this case I would make its constructor private and make it a friend class to the objects that should be able to instantiate it. For example (in C++):</p> <pre><code>class CFoo { // private ctor because only a select few classes should instantiate private: CFoo() { ... Do stuff } } class CBar { // CBar is one of the few classes that only need to use CFoo friend class CFoo; CFoo *m_pFoo; CBar() { m_pFoo = new CFoo; } } </code></pre> <p>So my question is: Is this stupid? Or is there a better way to achieve this? I'm especially interested in a way where it would work with C# considering the language lacks the friend keyword completely. Thanks.</p> http://stackoverflow.com/questions/303668/object-oriented-design-help-from-c-to-c/303680#303680 1 Answer by g. for Object Oriented Design help from C++ to C# g. 2008-11-19T22:44:28Z 2008-11-19T22:44:28Z <p>In C# depending on how the class is used, you could define one class within the scope of the other.</p> <pre><code>public class CBar { CBar() { m_pFoo = new CFoo(); } CFoo m_pFoo; private class CFoo { CFoo() { // Do stuff } } } </code></pre> http://stackoverflow.com/questions/303668/object-oriented-design-help-from-c-to-c/303684#303684 0 Answer by Marcin for Object Oriented Design help from C++ to C# Marcin 2008-11-19T22:45:42Z 2008-11-19T22:45:42Z <p>Just because only a few specific classes use CFoo, doesn't mean you should explicitly block others from using it. If this is truly the need, you may want to rethink your design. You definitely don't want to force this high amount of coupling within your code. Care to provide some detail as to why you're doing this, so we may better suggest a good solution?</p> http://stackoverflow.com/questions/303668/object-oriented-design-help-from-c-to-c/303688#303688 0 Answer by badbadboy for Object Oriented Design help from C++ to C# badbadboy 2008-11-19T22:47:48Z 2008-11-19T22:47:48Z <p>To help think if it is stupid or not, could you provide more concrete example of what the classes are?</p> <p>I would though say that using friend without a good reason sounds kind of a bit strange to me...in C# you have such a thing as assembly, so you could use internal constructor instead or private constructor and several static creation methods with different access (protected, public, internal...)</p> http://stackoverflow.com/questions/303668/object-oriented-design-help-from-c-to-c/303690#303690 0 Answer by Greg Rogers for Object Oriented Design help from C++ to C# Greg Rogers 2008-11-19T22:48:24Z 2008-11-19T22:48:24Z <p>First off, the friend declaration is in the wrong class. CFoo needs to friend CBar in order to give CBar access to it's private members.</p> <p>Secondly, yes, generally this should be avoided. Classes should rarely care how/where they are used. If they do then that functionality should probably be broken down differently.</p> http://stackoverflow.com/questions/303668/object-oriented-design-help-from-c-to-c/303692#303692 1 Answer by KiwiBastard for Object Oriented Design help from C++ to C# KiwiBastard 2008-11-19T22:48:47Z 2008-11-19T22:48:47Z <p>You could look at marking CFoo internal </p> <pre><code>internal class CFoo </code></pre> <ul> <li>that might suit your needs. As @g said, you can nest classes within classes, but this is a bit of a code smell IMHO.</li> </ul> http://stackoverflow.com/questions/303668/object-oriented-design-help-from-c-to-c/303695#303695 2 Answer by Guge for Object Oriented Design help from C++ to C# Guge 2008-11-19T22:49:49Z 2008-11-19T22:49:49Z <p>The goal here seems to be that you cannot have a CFoo until you have a working CBar.</p> <p>You could achieve the same with C# by having a private constructor for CFoo and then making a static method in CFoo that takes a CBar argument and calls said constructor and returns the new CFoo.</p> <p>This would be something like the System.Drawing.Graphics.FromImage(Image image) method.</p> <p>The question of why C# doesn't have the friend keyword has been covered <a href="http://stackoverflow.com/questions/203616/why-does-c-not-provide-the-c-style-friend-keyword">elsewhere</a>.</p> http://stackoverflow.com/questions/303668/object-oriented-design-help-from-c-to-c/303696#303696 0 Answer by chilltemp for Object Oriented Design help from C++ to C# chilltemp 2008-11-19T22:49:54Z 2008-11-19T22:49:54Z <p>Just make the class private. That simply limits the scope to your dll (exe, etc.). There's nothing as cool as the friend declaration in C#, but Marcin is right in that you should rethink such designs. If you really need 'friend' support, you could use reflection to simulate it at runtime.</p>