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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T08:02:43+00:00 2026-06-05T08:02:43+00:00

A typical rails controller might do something like this: class FoosController < ApplicationController def

  • 0

A typical rails controller might do something like this:

class FoosController < ApplicationController
  def index
    @foos = Foo.all
  end
end

I understand rails well enough to know that @foos will return an array of Foo objects, but that @foos itself is an instance variable.

So which object does the instance variable belong to? Would it be an instance of the FoosController class? Is a different instance of this object created every time I access the index page? What about if I access the show page, where a new variable @foo is introduced:

def show
  @foo = Foo.find(params[:id])
end

Does this variable belong to the same object that @foos belongs to?

  • 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-05T08:02:44+00:00Added an answer on June 5, 2026 at 8:02 am
    1. Correct; it belongs to the instance of FoosController that’s processing the current request.
    2. Yes, each request creates a new instance of the controller–that’s why instance variables can be used to hold state for a single request.
    3. Yes, but: if index isn’t called, @foos won’t be initialized, There is no @foos instance variable when the show action is hit in the code you show1.

    1 If you called index from show, then @foos would be initialized and available on the page. Not that you should do this, because that’s confusing concerns.

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

Sidebar

Related Questions

I'm on Rails 2.3.5. In a typical user controller create action class UsersController def
The typical Python threadpool will have a structure like this one: def run(self): while
I am new to rails and read this guide to get all the info
Simple enough. When were making a typical restful rails app we would keep all
In a typical User - Post - Comment model in Rails, every user can
Typical jQuery over-use: $('button').click(function() { alert('Button clicked: ' + $(this).attr('id')); }); Which can be
I am switching to PostgreSQL from SQLite for a typical Rails application. The problem
I'm currently using RESTful Authentication plug-in on my rails application. There is a typical
Typical scenario: SomeModule.find(:all, :conditions [xyz = ?, some_var] SomeModule.find(:first, :conditions [xyz = ?, some_var]
I have a typical CRUD app, I would like to add a link next

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.