- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Why can I serialize scala.collection.immutable.List ?
Wed, 2012-01-11, 23:48
The current API does not indicate that scala.collection.immutable.List has the Serializable trait:http://www.scala-lang.org/api/current/index.html#scala.collection.immutable.List
bizarrely, this works fine for me:
import java.io._
val il = scala.collection.immutable.List("1","hi","yo")
val store = new ObjectOutputStream(new FileOutputStream("store.dat")) store.writeObject(il) store.close
val in = new ObjectInputStream(new FileInputStream("store.dat")) val copy = in.readObject() println( copy) println(copy.getClass)
Shouldn't it give me a java.io.NotSerializableException ?
Thanks,Henry
bizarrely, this works fine for me:
import java.io._
val il = scala.collection.immutable.List("1","hi","yo")
val store = new ObjectOutputStream(new FileOutputStream("store.dat")) store.writeObject(il) store.close
val in = new ObjectInputStream(new FileInputStream("store.dat")) val copy = in.readObject() println( copy) println(copy.getClass)
Shouldn't it give me a java.io.NotSerializableException ?
Thanks,Henry
Thu, 2012-01-12, 00:21
#2
Re: Why can I serialize scala.collection.immutable.List ?
scala> List(1,2).isInstanceOf[Serializable]res0: Boolean = true
Cheers,√
On Wed, Jan 11, 2012 at 11:48 PM, Henry Goldwire <hgoldwire@manaproducts.com> wrote:
--
Viktor Klang
Akka Tech LeadTypesafe - Enterprise-Grade Scala from the Experts
Twitter: @viktorklang
Cheers,√
On Wed, Jan 11, 2012 at 11:48 PM, Henry Goldwire <hgoldwire@manaproducts.com> wrote:
The current API does not indicate that scala.collection.immutable.List has the Serializable trait:http://www.scala-lang.org/api/current/index.html#scala.collection.immutable.List
bizarrely, this works fine for me:
import java.io._
val il = scala.collection.immutable.List("1","hi","yo")
val store = new ObjectOutputStream(new FileOutputStream("store.dat")) store.writeObject(il) store.close
val in = new ObjectInputStream(new FileInputStream("store.dat")) val copy = in.readObject() println( copy) println(copy.getClass)
Shouldn't it give me a java.io.NotSerializableException ?
Thanks,Henry
--
Viktor Klang
Akka Tech LeadTypesafe - Enterprise-Grade Scala from the Experts
Twitter: @viktorklang
Probably because :: and Nil are serializable:
http://www.scala-lang.org/api/current/index.html#scala.collection.immutable.$colon$colon http://www.scala-lang.org/api/current/index.html#scala.collection.immutable.Nil$
--
Derek Williams