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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T15:02:26+00:00 2026-05-26T15:02:26+00:00

I was just wondering how placement new would behave when it is passed a

  • 0

I was just wondering how placement new would behave when it is passed a buffer thats not sufficient for allocation. But it seems like it succeeds anyway. Here’s my code:

#include <stdio.h>
#include <malloc.h>
#include <new>

class MyClass
{
    public:
        char data;
        char data1;
};


int main() {
    printf("sizeof MyClass: %lu\n", (unsigned long)sizeof(MyClass));

    void *place = malloc(sizeof(MyClass) - 2);

    MyClass *ptr = new (place) MyClass();

    ptr->data = 10;
    ptr->data1 = 20;
    printf("%d\n", ptr->data1); //This seems to have work fine, storing the data as always
}

Is this the expected behavior? Somebody please explain how come this works. Thanks.

PS: I’m using a 64 bit Ubuntu system, g++ compiler.

  • 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-26T15:02:27+00:00Added an answer on May 26, 2026 at 3:02 pm

    Calling placement new on a block of memory that isn’t big enough for the type is undefined behavior. It can (and likely will in a real program) trash your heap.

    Undefined behavior is undefined, so the program can appear to proceed as normal, even though you’re likely trashing memory that doesn’t belong to you. Your simple example doesn’t even attempt to free the memory it allocated, so you never really test the heap to see if it was corrupted.

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

Sidebar

Related Questions

Just wondering why people like case sensitivity in a programming language? I'm not trying
Just wondering I have searched but I have not found an answer. My question
Just wondering, would the following code arrangement cause any issues when calling mysql_connect, i.e.:
just wondering if anyone knows anything of using javascript to set html to new
Just wondering, when the text is red temporarily but still shows a valid output,
just wondering which approach would be better if both blocks of code would yield
Just wondering how difficult it would be to convert the following library to Objective-C
Just wondering sometime the 2NF may not be necessary. Option 1. ORDERS {orderId (pk),
Just wondering is there any way to open a webpage in new tab inside
just wondering if I have a webpage that generates a pdf, but could take

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.