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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T21:45:54+00:00 2026-06-08T21:45:54+00:00

Ruby 1.9 I suddenly realize I don’t understand how to define and initialize an

  • 0

Ruby 1.9

I suddenly realize I don’t understand how to define and initialize an instance variable in Ruby. It must be used only within a certain class and not accessible out of a class at all, so attr_accessor or attr_reader is not what I need.

class MyClass

  #how do I initialize it?
  @my_var = 'some value'

  def method1
    #I need to do something with @my_var
    puts @my_var
  end
  def method2
    #I need to do something with @my_var
    puts @my_var
  end
end

a = MyClass.new
a.method1 #empty 
a.method2 #empty

So I found that there is another way to do it

class MyClass

  #is this the only way to do it?
  def initialize
    @my_var = 555
  end

  def method1
    #I need to do something with @my_var
    puts @my_var
  end

  def method2
    #I need to do something with @my_var
    puts @my_var
  end
end

a = MyClass.new
a.method1 #555; it's ok
a.method2 #555; it's ok

Well, is second approach the right one?

  • 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-06-08T21:45:58+00:00Added an answer on June 8, 2026 at 9:45 pm

    each class has an initialize() method that acts similar to a constructor in other languages, instance variables should be initialized there:

    class MyClass
    
      def initialize
         @my_var = 'some value'
      end
    
      # etc...
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Ruby compacts the sequence only if it has nil value, how do I compact
I was running code in ruby console and I suddenly found console crahsed with
Today, tiny_tds suddenly does not accept more than one execute and returns: C:\>ruby test_use.rb
I'm using gem 1.3.7 , Ruby 1.9.2, and Rails 3.0.7. Suddenly, when I try
Ruby is slow at certain things. But what parts of it are the most
Ruby docs don't mention this. Does Dir.glob(*) guarantee the order of the files it
Ruby's Enumerable has a select which can select certain items from an array: parent=@sections.select
Ruby setters—whether created by (c)attr_accessor or manually—seem to be the only methods that need
I am running ubuntu EC2 small instance with ruby on rails and mysql in
I have read in many textbooks that In Ruby,a class can only be a

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.