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 中有这个作为返回类型
Map[String, Seq[Map[String, Seq[MyClass]]]]
我必须在代码中的多个位置使用它,有没有办法将它分配给某种常量并使用常量而不是明确说明它?
是的,您可以使用 定义类型别名type Foo = Map[...]。
type Foo = Map[...]