为什么 Lift 使用 xml.Node 而不是 xml.Elem?

发布于 2024-12-15 14:16:11 字数 281 浏览 0 评论 0原文

scala.xml.Elemscala.xml.Node 的子类。 scala.xml.XML.loadFile 将整个 XML 文档加载到 scala.xml.Elem 中。那么为什么 Lift 在这种情况下使用 scala.xml.Node 以及在什么情况下我会更喜欢 scala.xml.Node 而不是 scala.xml.Elem?

scala.xml.Elem is a subclass of scala.xml.Node. scala.xml.XML.loadFile loads a whole XML document into a scala.xml.Elem. So why does Lift use scala.xml.Node in this case and in what cases could I prefer scala.xml.Node over scala.xml.Elem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疏忽 2024-12-22 14:16:11

我认为您在问题中回答了它: ElemNode 的子类,或者相反,NodeElem 的超类。有许多方法(在 Scala 标准库或 Lift 中)返回 NodeNodeSeq (基本上是同一件事),所以我想这就是为什么< code>Node 优先于 Elem。但如果您想要权威答案,我建议您在邮件列表上询问 David

I think you answered it in your question: Elem is a subclass of Node or, in reverse, Node is the superclass of Elem. There are many methods (in the Scala standard library or in Lift) that return Node or NodeSeq (which is basically the same thing), and so I imagine that is why Node is preferred to Elem. But if you want an authoritative answer I'd recommend asking David on the mailing list.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文