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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T08:47:47+00:00 2026-06-17T08:47:47+00:00

Possible Duplicate: Classes store data members in sequential memory? Just wanted to ask why

  • 0

Possible Duplicate:
Classes store data members in sequential memory?

Just wanted to ask why the following is correct:

template<class T>
class Vec3 {
public:
  // values
  T x,y,z;

  // returns i-th komponent (i=0,1,2) (RHS array operator)
  const T operator[] (unsigned int i) const {
    return *(&x+i);
  }
}

or in other words: Why is it always guaranteed that x, y and z are always sizeof(T) units apart in memory. Can’t there ever be fragmentation holes in between two of those varibles, thus letting this operator return a false value?

  • 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-17T08:47:48+00:00Added an answer on June 17, 2026 at 8:47 am

    It is not guaranteed that x, y and z are always sizeof(T) units apart in memory. There can be padding bytes added in between.
    It is left out as an implementation detail.
    Only thing guaranteed is that there will be no padding between beginning of the class/structure and its first member for POD structures/classes.

    It is not guaranteed that the implementation of operator[] in your code will work always.

    Reference:
    C++11: 9.2 Class members [class.mem]

    14) Nonstatic data members of a (non-union) class with the same access control (Clause 11) are allocated so
    that later members have higher addresses within a class object. The order of allocation of non-static data
    members with different access control is unspecified (11). Implementation alignment requirements might
    cause two adjacent members not to be allocated immediately after each other;
    so might requirements for
    space for managing virtual functions (10.3) and virtual base classes (10.1).

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

Sidebar

Related Questions

Possible Duplicate: C++ Inherited template classes don't have access to the base class I'm
Possible Duplicate: Multiple Inheritance in C# I have two classes Class A and Class
Possible Duplicate: Ternary Expression with Interfaces as a Base Class Classes: interface ISms {
Possible Duplicate: When to use forward declaration? C++ classes with members referencing each other
Possible Duplicate: java class declaration <T> Sometimes I've seen that java classes are created
Possible Duplicate: How to remove all CSS classes using jQuery? I have the following:
Possible Duplicate: Can inner classes access private variables? Inner class accessing outer class I
Possible Duplicate: jQuery and pseudo-classes I tried hiding the :after pseudo class via jQuery
Possible Duplicate: Why are interfaces preferred to abstract classes? Abstract class and Interface class?
Possible Duplicate: How many Python classes should I put in one file? Coming from

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.