Object Oriented Design help from C++ to C# - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T16:00:43Zhttp://stackoverflow.com/feeds/question/303668http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/303668/object-oriented-design-help-from-c-to-c1Object Oriented Design help from C++ to C#Balk2008-11-19T22:39:32Z2008-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#3036801Answer by g. for Object Oriented Design help from C++ to C#g.2008-11-19T22:44:28Z2008-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#3036840Answer by Marcin for Object Oriented Design help from C++ to C#Marcin2008-11-19T22:45:42Z2008-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#3036880Answer by badbadboy for Object Oriented Design help from C++ to C#badbadboy2008-11-19T22:47:48Z2008-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#3036900Answer by Greg Rogers for Object Oriented Design help from C++ to C#Greg Rogers2008-11-19T22:48:24Z2008-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#3036921Answer by KiwiBastard for Object Oriented Design help from C++ to C#KiwiBastard2008-11-19T22:48:47Z2008-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#3036952Answer by Guge for Object Oriented Design help from C++ to C#Guge2008-11-19T22:49:49Z2008-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#3036960Answer by chilltemp for Object Oriented Design help from C++ to C#chilltemp2008-11-19T22:49:54Z2008-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>