Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这个包命名结构在 Scala 文件中完成了什么?
package myco.group.component package foo package bar
它与以下内容相同:
package myco.group.component.foo.bar import mco.group.component._ import mco.group.component.foo._ import mco.group.component.foo.bar._
也一样:
package myco.group.component { package foo { package bar { ... } } }