What is the most efficient way to create emtpy ListBuffer ?
Posted
by drypot
on Stack Overflow
See other posts from Stack Overflow
or by drypot
Published on 2010-04-09T09:36:52Z
Indexed on
2010/04/09
9:53 UTC
Read the original article
Hit count: 139
scala
What is the most efficient way to create emtpy ListBuffer ?
- val l1 = new mutable.ListBuffer[String]
- val l2 = mutable.ListBuffer[String] ()
- val l3 = mutable.ListBuffer.empty[String]
There are any pros and cons in difference ?
© Stack Overflow or respective owner