- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
a xml elem problem
Tue, 2009-12-15, 16:24
is scala.xml.Elem lack of a way to detect a "ring" in
the tree?
that is, if Elem's last parameter(Node*) includes
itself, that will
causes a infinited recursive.
Tue, 2009-12-15, 17:17
#2
Re: a xml elem problem
2009/12/15 Caesar You <Caesar.Jr@hotmail.com>
is scala.xml.Elem lack of a way to detect a "ring" in the tree? that is, if Elem's last parameter(Node*) includes itself, that will causes a infinited recursive.
You need to supply the Node * parameters during the construction of the Elem. But you won't have the instance of the Elem to put in the Node* list during construction, so I don't see how such a case could ever exist.
--
Lift, the simply functional web framework http://liftweb.net
Beginning Scala http://www.apress.com/book/view/1430219890
Follow me: http://twitter.com/dpp
Surf the harmonics
Tue, 2009-12-15, 18:07
#3
Re: a xml elem problem
On Tue, Dec 15, 2009 at 07:59:16AM -0800, David Pollak wrote:
> You need to supply the Node * parameters during the construction of
> the Elem. But you won't have the instance of the Elem to put in the
> Node* list during construction, so I don't see how such a case could
> ever exist.
scala> object o {
lazy val e1: xml.Elem = xml.Elem(null, "a", null, null, e2)
lazy val e2: xml.Elem = xml.Elem(null, "b", null, null, e1)
}
defined module o
scala> o.e1
java.lang.StackOverflowError
at o$.e1(:4)
2009/12/15 Caesar You <Caesar.Jr@hotmail.com>
--
Daniel C. Sobral
I travel to the future all the time.