Module-level visibility

Ali Çehreli acehreli at yahoo.com
Mon Feb 15 15:48:49 PST 2010


bearophile wrote:
> I have shown this little program to some of my friends that program in Java/C#:
> 
> class Foo {
>     private int x;
> }
> void main() {
>     Foo f = new Foo;
>     f.x = 5;
> }
> 
> 
> When I say them this code compiles with D2 they usually tell me that the compiler has a bug.
> So I suggest Walter to ask other people, maybe at Google or else (and in this newsgroup too), if they think this feature of D2 is a good thing, before this feature is set in stone in D2 (I have no definite answer about this topic, I can't help you). If you are really sure this is a good feature, then you can ignore this post.
> 
> Bye,
> bearophile

I don't have much experience with D, but I think this feature is useful. 
It solves the problem of giving access rights to a select few, in 
addition to the class itself.

In C++, it is sometimes sought to allow some classes to have more rights 
than the general public. For example, let the public have read access to 
certain features, but let some classes have write access.

In D, that select few is the module by default, and may be extended to 
the package.

Ali



More information about the Digitalmars-d mailing list