/*This class provides a simple way to get unique objects for equal strings. * Since symbols are interned, they can be compared using reference equality. * Instances of `Symbol` can be created easily with Scala's built-in quote * mechanism.*/ //相同的字符串获得同一个对象 def get(key: Symbol): Option[Seq[String]] = get(key.name)