Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7654977
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T12:23:39+00:00 2026-05-31T12:23:39+00:00

In other languages like (objective-c for example) calling a method on a nil object

  • 0

In other languages like (objective-c for example) calling a method on a nil object fails silently and returns nil but in ruby you get errors like this…

undefined method `some_method' for nil:NilClass

which (for me) results in code like this:

if some_object && some_object.cool?  # instead of if some_object.cool?
  # do some cool stuff
end

or

some_object.do_awsome_thing if some_object

Which all seems backwards and weird.

Two questions

  1. What am I doing wrong, what’s the correct way to deal with having the possibility of a nil object

  2. What kinds of awful awful things would happen if I just monkey patched the nil object to return nil for missing_methods?

IE:

class NilClass
  def missing_method
    nil
  end
end
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T12:23:40+00:00Added an answer on May 31, 2026 at 12:23 pm

    It’s a design choice, and I imagine it would have been possible to have nil respond with nil to methods it doesn’t know.

    To be consistent, you should define respond_to_missing?:

    class NilObj
      def method_missing(*_)
        nil
      end
      def respond_to_missing?(*_)
        true
      end
    end
    

    If you did monkey patch method_missing like you are suggesting, especially if you also redefine respond_to_missing? accordingly, you might get some strange side effects as duck typing requires some introspection and that is typically done by checking if an object respond to something than a particular class.

    For instance, the fact that nil would respond to to_ary would seem to suggest that it is “array-like”, when it is not the case.

    Some builtin methods will call respond_to?, and a few will simply call and rescue NoMethodError, so even without the respond_to_missing? you could get some strange side effects.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In Ruby, like in many other OO programming languages, operators are overloadable. However, only
just like in other normal programming languages... we can for example override the OnPaint()
This question would probably apply equally as well to other languages with C-like multi-line
I'd like to translate my GUI into other languages. Unfortunately I don't speak Mandarin,
Is there something like the Python descriptor protocol implemented in other languages? It seems
Is there a good class repository like PEAR for PHP for other languages such
Can C++ slicing apply to other languages too, like Java/C#?
I have a string that is like below. ,liger, unicorn, snipe in other languages
In Flex (and many other languages) a function/method of a class can be declared
In languages like C++ or Objective-C a class normally consist of two files. The

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.