Scala 解析器组合器和 Reader 无限循环

发布于 2024-11-30 16:59:11 字数 429 浏览 0 评论 0原文

我对 Scala 解析器组合器有点困惑。 我正在使用 Reader 的自定义实现来直接读取标记列表:

private class Token_Reader(tokens: List[Token], val pos: Token_Pos) extends Reader
{
  def first = if(atEnd) null else tokens.head
  def rest = if(atEnd) this else new Token_Reader(tokens.tail, new Token_Pos(pos.p + 1))
  def atEnd = tokens.isEmpty
}

令我困惑的是 atEnd 似乎被实际解析器完全忽略,导致使用时出现无限循环/无限递归*/代表

I am a little confused by the Scala parser combinators.
I'm using a custom implementation of Reader to directly read a list of tokens:

private class Token_Reader(tokens: List[Token], val pos: Token_Pos) extends Reader
{
  def first = if(atEnd) null else tokens.head
  def rest = if(atEnd) this else new Token_Reader(tokens.tail, new Token_Pos(pos.p + 1))
  def atEnd = tokens.isEmpty
}

What puzzles me is that atEnd seems to be completely ignored by the actual parsers, resulting in an infinite loop / infinite recursion when using */rep.

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

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

发布评论

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

评论(1

踏月而来 2024-12-07 16:59:11

我不知道它会解决这个问题,但是在我在 Scala 源代码中看到的 Reader 实现中,first 方法在末尾返回文件结束字符而不是 null。我相信避免空值通常是好的...

例如,在 CharSequenceReader 中,它看起来像

  /** Returns the first element of the reader, or EofCh if reader is at its end 
   */
  def first = 
    if (offset < source.length) source.charAt(offset) else EofCh 

这个字符是在伴生对象中定义的:

object CharSequenceReader {
  final val EofCh = '\032'
}

I don't know that it will fix this issue, but in the Reader implementations I see in the Scala source, the first method returns an end of file character rather than null when at the end. And I believe it's generally good to avoid nulls...

For example, in CharSequenceReader it looks like

  /** Returns the first element of the reader, or EofCh if reader is at its end 
   */
  def first = 
    if (offset < source.length) source.charAt(offset) else EofCh 

And this character is defined in the companion object:

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