StackOverflow 文件 Scala Language 教程 範圍 私有包特定範圍 私有包特定範圍 Created: November-22, 2018 你可以指定可以訪問私有值的包。 package com.example { class FooClass { private val x = "foo" private[example] val y = "bar" } class BarClass { val f = new FooClass f.x // <- Will not compile f.y // <- Will compile } } 物件私有範圍私人範圍