Article Discussion
What's New in Scala 2.8: Chained Package Clauses
Summary: The second installment of a series of articles on the latest Scala release, Scala 2.8, Martin Odersky explains how and why packages and imports have changed in 2.8.
2 posts.
The ability to add new comments in this discussion is temporarily disabled.
Most recent reply: September 9, 2010 1:49 PM by Martin
    Bill
     
    Posts: 409 / Nickname: bv / Registered: January 17, 2002 4:28 PM
    What's New in Scala 2.8: Chained Package Clauses
    September 6, 2010 9:00 PM      
    The second installment of a series of articles on the latest Scala release, Scala 2.8, Martin Odersky explains how and why packages and imports have changed in 2.8.

    http://www.artima.com/scalazine/articles/chained_package_clauses_in_scala.html

    What's your opinion on Scala's packages and imports scheme?
    • Daniel
       
      Posts: 3 / Nickname: 56653 / Registered: July 4, 2008 9:51 PM
      Re: What's New in Scala 2.8: Chained Package Clauses
      September 8, 2010 3:57 AM      
      First of all, it's good to have such a clear and systematic explanation of packages in Scala 2.8. It seems to be a really confusion topic, e.g. I answered already two questions about this on StackOverflow (and now I added the link to the article).

      Second, I like the way it works now: You have the choice what you want to see. I think this helps to use an interconnected group of packages as a kind of module or "superpackage" (together with the possibility to specify package dependent visibility for modifiers).

      I have one open question about packages in Scala: They are conceptually very similar to objects (especially after introducing package objects that allow to add independent "stuff" to them). So shouldn't we try to "unify" objects and packages in one or another way? If this is *no* good idea, I'd like to hear the reason, as I have somethime trouble to decide if I should use objects or packages to structure my code.
      • Martin
         
        Posts: 15 / Nickname: modersky / Registered: September 14, 2003 9:46 PM
        Re: What's New in Scala 2.8: Chained Package Clauses
        September 9, 2010 1:49 PM      
        > I have one open question about packages in Scala: They are
        > conceptually very similar to objects (especially after
        > introducing package objects that allow to add independent
        > "stuff" to them). So shouldn't we try to "unify" objects
        > and packages in one or another way? If this is *no* good
        > idea, I'd like to hear the reason, as I have somethime
        > trouble to decide if I should use objects or packages to
        > structure my code.

        Absolutely. In fact, in the internals of the Scala compiler, packages are a special case of objects. And package objects bring packages a step closer to being real objects (this will be covered in another post). The reason packages are not quite the same as objects has to do with Java interop. There's no way we can treat a Java package as a value that we can pass to a function, for instance.