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 { ... } } }