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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T10:24:05+00:00 2026-05-31T10:24:05+00:00

I am looking for way to create the according attr_reader methods while setting the

  • 0

I am looking for way to create the according attr_reader methods while setting the values for the according instance variables in the initialize method? For example, the following code:

class SomeClass
  attr_reader :hello
  def initialize( arg)
    @hello = arg
  end
end

I am looking for way to write as follows:

class SomeClass
  def initialize( arg)
    some_method_as_described_in_question( @hello, arg) 
  end
end   

Does a method doing what I have described exist in the Ruby built-in Classes and Modules?

  • 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-31T10:24:06+00:00Added an answer on May 31, 2026 at 10:24 am

    You can open the eigenclass from within the method and set the attribute there:

    class SomeClass
      def initialize(arg)
        (class << self; self; end).send(:attr_reader, :hello)
        @hello = arg
      end
    end
    

    That way each instance’s eigenclass will have that attribute reader. But really it only makes sense to do things that way if the attribute name is dynamic, and can vary from instance to instance. If it’s always hello, I don’t see any drawback to just defining it in the class like your original code block.

    For example, if you are dynamically passing in the attribute name, you could do it like this:

    class SomeClass
      def initialize(attr, arg)
        (class << self; self; end).send(:attr_reader, attr.to_sym)
        instance_variable_set("@#{attr}", arg)
      end
    end
    

    This is compatible with Ruby 1.8. Taking a tip from @HenrikN in the comment to your question, you can use define_singleton_method in Ruby 1.9:

    class SomeClass
      def initialize(attr, arg)
        define_singleton_method(attr) { instance_variable_get("@#{attr}") }
        instance_variable_set("@#{attr}", arg)
      end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am looking for a way to create a string variable containing certain values
I looking for a way to create Delta Diff Patches of Large Binary Files
I am looking for a way to create a ZIP file from a folder
I'm looking for a way to create an online form that will update an
I'm looking for a way to create an it will look cool effect for
I'm looking for a way to create a data access layer that can either
I am looking for a way to create a <ul> of items that I
I am looking for a way to create a program in unmanaged c++ that
I'm looking at a way to create a summary of transactions within a certain
I'm looking for a way to create valid UTF-16 JavaScript escape sequence characters (including

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.