This page is no longer maintained — Please continue to the home page at www.scala-lang.org

difference between private[org.pack] and protected[org.pack]

1 reply
meiko
Joined: 2008-09-27,
User offline. Last seen 3 years 10 weeks ago.

Hi

is there any difference between:

private[org.pack] class MyClass

and

protected[org.pack] class MyClass

or between:

private[org.pack] val a = 1

and

protected[org.pack] val a = 1

meiko

extempore
Joined: 2008-12-17,
User offline. Last seen 35 weeks 3 days ago.
Re: difference between private[org.pack] and protected[org.pack

On Sun, Jan 04, 2009 at 02:50:16PM +0100, meiko rachimow wrote:
> Hi
>
> is there any difference between:
>
> private[org.pack] class MyClass
> protected[org.pack] class MyClass
> private[org.pack] val a = 1
> protected[org.pack] val a = 1

Well, let's see. You can't use that synatx btw, scala chokes on dots in the access specifier. Fortunately you don't need
the dots:

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland