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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T01:32:07+00:00 2026-05-17T01:32:07+00:00

I know that some say that class variables (e.g. @@class_var ) should be avoid

  • 0

I know that some say that class variables (e.g. @@class_var) should be avoid in Ruby and should use the an instance variable (e.g. @instance_var) in the class scope instead:

def MyClass
  @@foo = 'bar' # Should not do this.
  @foo = 'bar'  # Should do this.
end

Why is the use of class variables frowned upon in Ruby?

  • 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-17T01:32:08+00:00Added an answer on May 17, 2026 at 1:32 am

    Class variables are often maligned because of their sometimes confusing behavior regarding inheritance:

    class Foo
      @@foo = 42
    
      def self.foo
        @@foo
      end
    end
    
    class Bar < Foo
      @@foo = 23
    end
    
    Foo.foo #=> 23
    Bar.foo #=> 23
    

    If you use class instance variables instead, you get:

    class Foo
      @foo = 42
    
      def self.foo
        @foo
      end
    end
    
    class Bar < Foo
      @foo = 23
    end
    
    Foo.foo #=> 42
    Bar.foo #=> 23
    

    This is often more useful.

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

Sidebar

Related Questions

Say that i have some classes like this example. class A { int k,
I have some code that is written in french, that is the variables, class,
I know that some other languages, such as PHP , support a concept of
I know that the additional consideratiosn when compiling for x64 is that some data
In jquery when I run: $('li').each(some-function(i){}); The IDE seems to know that some-function is
I know that there are some threads have a similar issue with this thread.
i know that there is some rules and standards in css handling but i
I know that there must be some differences. I have a Silverlight component (
I know that if I am inside some function foo() which is called somewhere
I know that this may be an amateur question but for some reason I

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.