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

  • Home
  • SEARCH
  • 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 434279
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T20:15:30+00:00 2026-05-12T20:15:30+00:00

When the compiler sees this code: SomeClass foo; int x = foo.bar; What is

  • 0

When the compiler sees this code:

SomeClass foo;
int x = foo.bar;

What is the process it goes about in retrieving the value of bar? I.e. does it look at some data structure representing the class definition? If so is this data structure generated at compile time or runtime?

  • 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-12T20:15:30+00:00Added an answer on May 12, 2026 at 8:15 pm

    The process starts when the compiler sees the definition for SomeClass. Based on that definition, it builds an internal structure that contains the types of the fields in SomeClass, and the locations of the code for the methods of SomeClass.

    When you write SomeClass foo; the compiler finds the code that corresponds to the constructor for SomeClass, and creates machine instructions to call that code. On the next line you write int x = foo.bar. Here the compiler writes machine instructions to allocate stack space for an int, and then looks at its data structure for SomeClass. That data structure will tell it the offset in bytes of bar from the beginning of the foo object. The compiler then writes machine code to copy the bytes corresponding to bar into the memory for x. All of this machine code gets written into your executable.

    Generally, the data structures representing SomeClass and other definitions are thrown away once compilation is done. What you have left is just a set of machine instructions. Those instructions are executed when you actually run your program, so that the constructor for SomeClass and the code to copy foo.bar into x are executed by the CPU without any explicit knowledge of the structure of your objects.

    This is the general case. There are special cases for when you run your code under a debugger and for optimization, but this is generally what happens.

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

Sidebar

Ask A Question

Stats

  • Questions 207k
  • Answers 207k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You could easily achieve something like this using Windows PowerShell.… May 12, 2026 at 9:22 pm
  • Editorial Team
    Editorial Team added an answer After testing different approaches I eventually decided to use JMX.… May 12, 2026 at 9:22 pm
  • Editorial Team
    Editorial Team added an answer Maybe you must use StreamReader stRead = new StreamReader(Server.MapPath("~/textfile.txt")); to… May 12, 2026 at 9:22 pm

Related Questions

I'm getting this error when dealing with a number of classes including each other:
I'm having an issue setting up one of my projects in TeamCity (v4.0), specifically
We have some auto-generated resource files in our project in Visual Studio 2008, with
I seem to be forgetting my C++ ... I'm trying to declare some functions
Let's say we have a solution with the following structure: Project.DAL - Data access

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.