Ruby 比较错误。 a == b 正常,a > 错误乙

发布于 2025-01-07 04:33:19 字数 958 浏览 1 评论 0原文

如果我将 == 更改为 >,我会在 ruby​​ 中收到以下错误:比较:

nano:jc] ruby ItemController.rb

file read: snippets.txt

ItemController.rb:23:in `read': undefined method `>' for nil:NilClass (NoMethodError)
    from ItemController.rb:19:in `open'
    from ItemController.rb:19:in `read'
    from ItemController.rb:58

以下是引起投诉的方法定义。请参阅“

if line.index("<item>") > -1

With

if line.index("<item>") == 0

it Works”行。失败并显示 > 0也。

尤克!

  def read
    @item_count = 0
    File.open(@file_name, 'r') do |f1|
      while line=f1.gets
        @line.concat([line])

        if line.index("<item>") > -1
          puts "begin"
          @item_count = @item_count + 1
        end

        if line.index("</item>") == 0 
          puts "end\n"

        end

        # puts line
      end # while
   end # do
  end # def

I get the following error in ruby if I change == to > in a comparison:

nano:jc] ruby ItemController.rb

file read: snippets.txt

ItemController.rb:23:in `read': undefined method `>' for nil:NilClass (NoMethodError)
    from ItemController.rb:19:in `open'
    from ItemController.rb:19:in `read'
    from ItemController.rb:58

Below is the method definition that is causing the complaint. See the line

if line.index("<item>") > -1

With

if line.index("<item>") == 0

it works. Fails with > 0 also .

Yuuk!

  def read
    @item_count = 0
    File.open(@file_name, 'r') do |f1|
      while line=f1.gets
        @line.concat([line])

        if line.index("<item>") > -1
          puts "begin"
          @item_count = @item_count + 1
        end

        if line.index("</item>") == 0 
          puts "end\n"

        end

        # puts line
      end # while
   end # do
  end # def

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

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

发布评论

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

评论(1

流殇 2025-01-14 04:33:19

您的 line.index("") 计算结果为 nil。 Nil 有一个 == 方法,但没有 >。所以根本原因是在你没有预料到的地方出现了一个nil

Your line.index("<item>") evaluates to nil. Nil has a == method but there is no >. So the root cause is that there is a nil where you didn't expect it.

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