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ではList.make(100、1)を使用できましたが、現在は非推奨です。それを行うための新しい適切な方法は何ですか?
廃止されたメモで説明されているように:
@deprecated("use `fill' instead", "2.8.0")
これを試して:
List.fill(100)(1)
ドキュメントが言うように: