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 338399
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T10:25:33+00:00 2026-05-12T10:25:33+00:00

In ruby I want to do roughly the following and have it print out

  • 0

In ruby I want to do roughly the following and have it print out “changed”:

class Whatever
  def change_foo
    @foo="changed"
  end
end

@foo = "original"
o = Whatever.new
o.change_foo
puts "it changed" if @foo == "changed"
puts "it did not change" if @foo == "original"

The problem is, of course, that inside Whatever, @foo belongs to an instance of Whatever.

Is there a way to make change_foo change the “global” foo? Another way of asking this might be “what object can I reference that “owns” @foo?”.

I don’t want solutions like “use a global variable” or “use a class variable” or “pass @foo to change_foo“. I’m specifically asking about the above scenario where I have no control over the original variable nor the way that change_foo is called.

I have come up with a workaround where I pass in a reference to the global object at construction time, but I’m not crazy about it since it requires I instantiate Whatever at the proper scope.

class Whatever
  def initialize(main)
    @main = main
  end

  def change_foo
    @main.instance_variable_set("@foo","changed")
  end
end
o = Whatever.new(self)
  • 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-12T10:25:33+00:00Added an answer on May 12, 2026 at 10:25 am

    Late to the party, but you can pass the current context to the method, and then eval the operations on the instance variable in that specific context:

    class Whatever
      def changeFoo(context)
        eval %q( @foo="changed" ), context
      end
    end
    @foo = "original"
    o = Whatever.new()
    o.changeFoo(binding)
    puts "it changed" if @foo == "changed"
    puts "it did not change" if @foo == "original"
    
    # => it changed
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Background: So I have roughly (Ruby on Rails app) class A def calculate_input_datetimes #
I'm reading Metaprogramming Ruby and just want to clear something up about the following
Well, the title say it all. I have a ruby script I want running
I have a simple tab-separated text file that I want Ruby to read every
I'm using ruby and I want to splice out a piece of a string
I have a 2-dimensional array in Ruby that I want to produce a working
I want to install ruby on my Linux Mint 12. I am following this
I want to have 2 Ruby on Rails applications on a domain. The first
I want to create a static ruby class with a library of function. I
I want to downgrade the Ruby version I have installed(Ruby 1.9.2) on Ubuntu 10.04

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.