In C++ placement new is used to construct an object at a particular memory location or to pass additional arguments to an allocation function.
8
votes
2answers
111 views
operator new(n) versus new unsigned char[n] for placement new
I'm allocating memory that will later be used for constructing objects with placement new. Should I be using operator new(n), or should I be using new unsigned char[n]? Why?
3
votes
2answers
94 views
Is such assignment a good idea in C++
A lot of classes has assignment operator (operator=) the same code as in destructor and than very similar code of copy constructor.
So is it good idea to implement the assignment in such way?
...
4
votes
1answer
170 views
Placement new with std::list
I am looking to implement a (doubly) linked list which only calls placement new internally, directing all memory to a pool allocated with something like:
char *memPool = new char[4096]; // One-off ...
0
votes
1answer
71 views
load_construct_data in boost: problems with placement new
I try to serialize derived pointer class with non-default constructor with the help of boost.
During the compilation I get an error:
Derived.h: In function ‘void ...
2
votes
3answers
109 views
Placement new to avoid copy constructor
I have a simple class that contains a pointer to one of it's own members:
struct X {
int val;
int* pVal;
X(int v) : val(v), pVal(&val) {}
}
X x(1);
I have some code like this:
...
4
votes
1answer
72 views
templated placement new and destructor
why that does not compile?
template <typename T>
class Pool{
char Buff[sizeof(T)*256];
public:
Pool(){
T* item = reinterpret_cast<T*>(&Buff[0]);
for(int i ...
2
votes
1answer
182 views
c++11 class member array size constexpr forward declaration
I want to exclude some headers from my include chain after having used them. From what I know there is no exclude "header.h" in c++11.
Pseudo Code Wishful thinking:
#include "the_bad_header.h" ...
9
votes
2answers
183 views
Placement new and uninitialized POD members
Does the C++ standard guarantee that uninitialized POD members retain their previous value after a placement new?
Or more precisely, will the following assert always be satisfied according to C++11?
...
7
votes
2answers
288 views
How to directly read a huge chunk of memory into std::vector?
I have a huge contiguous array x that I fread from a file.
How do I drop this chunk into a std::vector<>? In other words, I prefer to have the result to be in std::vector<> rather than ...
0
votes
2answers
61 views
placement new and private constructor
I have a custom memory allocator which uses placement new. I then have a class that has a private constructor, and when I try to use my memory allocator it complains about the constructor being ...
2
votes
2answers
163 views
Dynamic allocation with C++'s “placement new”
The question: How to use "placement new" for creating an array with dynamic size? or more specifically, how to allocate memory for array elements from a pre-allocated memory.
I am using the following ...
0
votes
1answer
53 views
Recursive placement allocation
Is it possible to make a recursive placement allocation?
if I have this class:
class A
{
private:
int m_filed1;
char* m_field2;
public:
A(int size)
{
m_field1 = size;
m_field2 = ...
0
votes
2answers
63 views
Creating object pointer independent of constructor argument
I am trying to create a vector like container Vector.
Then declared:
Vector< A> Avector.
While allocating memory it gives compilation error that A does not have a default constructor.
I ...
6
votes
2answers
141 views
Is move assignment via destruct+move construct safe?
Here's a very easy way to define move assignment for most any class with a move constructor:
class Foo {
public:
Foo(Foo&& foo); // you still have to write this one
...
2
votes
1answer
153 views
Is it safe to combine sizeof and placement new?
Consider the following class:
template <class T>
class defer {
public:
template <class ...Args>
void construct(Args&&...);
T& obj();
~defer();
private:
...
3
votes
1answer
181 views
Why operator new function - placement form ok in class level?
We know from c++ 11(also true in c++98/03 standard) standard(see below), we cannot try to replace the operator new function - placement form in global space as it has already been defined.
...
12
votes
1answer
288 views
Can placement-new and vector::data() be used to replace elements in a vector?
There are two existing questions about replacing vector elements that are not assignable:
C++ Use Unassignable Objects in Vector
How to push_back without operator=() for const members?
A typical ...
2
votes
1answer
224 views
Multiple arguments to C++ placement new 'constructor'
In order to do some custom memory tracking (leak prevention, corruption detection), I'm having to use placement new to create C++ objects, which works fine - but I'm struggling to figure out how I can ...
0
votes
1answer
182 views
C++: Placement new collides with own new overload
I have overloaded the new operator for a type X to use some memory pool. My new operator takes no user-defined arguments, thus, the only argument is the size of the object of type size_t. At another ...
8
votes
5answers
297 views
Do I really have to worry about alignment when using placement new operator?
I read this When should I worry about alignment? but I am still do not know if I have to worry about not aligned pointer returned by placement new operator - like in this example:
class A {
public:
...
0
votes
1answer
108 views
What is the cost of overloading placement new operator
We want to overload placement new operator just to verify that used memory size is enough for the given class. We know this size. The construction is more or less in this way:
template <size_t ...
7
votes
1answer
167 views
Is previously initialize memory guaranteed to persist after a placement new call?
Say I have the following:
struct A
{
int x;
};
//...
A* aOriginal = new A(); //value construct aOriginal
assert( aOriginal->x == 0 );
A* aSecond = new (aOriginal) A;
assert( aSecond->x == ...
0
votes
2answers
218 views
Reinterpret_cast vs placement new
From reading this post, it is clear that placement news in c++ are used to call a class constructor on a pre-allocated memory location.
In the case that the memory is already initialized, is a ...
3
votes
5answers
198 views
assignment of class with const member
Consider the following code:
struct s
{
const int id;
s(int _id):
id(_id)
{}
};
// ...
vector<s> v; v.push_back(s(1));
I get a compiler error that 'const int id' cannot ...
2
votes
4answers
72 views
Constrain the lifetime of a data member to one method
I have encountered a slightly unusual problem. Consider the following code:
class parser
{
lexer lex;
public:
node_ptr parse(const std::string& expression)
{
...
3
votes
2answers
144 views
Does encapsulated char array used as object breaks strict aliasing rule
Do the following class break the strict aliasing rule:
template<typename T>
class store {
char m_data[sizeof(T)];
bool m_init;
public:
store() : m_init(false) {}
store(const T ...
5
votes
5answers
188 views
Placement new behaviour equivalent
I have a question regarding placement new syntax in C++. Are the following two code snippets functionally equivalent and can be used interchangeably (I am not implying that the second should be used, ...
7
votes
5answers
339 views
Do we need to explicitly call the destructor for the “simple POD classes” allocated with “placement new”?
Here by "simple", I mean a class with non-virtual empty destructor or POD type.
Typical example:
char buffer[SIZE];
T *p = new(buffer) T;
...
p->~T(); // <---- always ?
What happens if we ...
1
vote
4answers
154 views
Does placement new zero out the memory?
I have the following code :
struct foo {};
void bar(foo *d) {
new(d) foo(*d);
}
Does the expression new(d) foo(*d) leave the object pointed to by d unchanged? More specifically, is the above true ...
5
votes
2answers
233 views
How to create an array while potentially using placement new
I have been working on creating a custom allocator as a fun exercise/practice and I ran into two potentials issues with creating arrays. For a typical call for allocation, I will use malloc and ...
0
votes
1answer
128 views
Templated function and placement new constructor parameters
I have a couple of templated methods declared in my Memory Manager class:
template <class T>
inline T* AllocateObject() { return new (Allocate(sizeof(T))) T(); }
template <class T, class ...
0
votes
2answers
104 views
How do you allocate memory at a predetermined location?
How do i allocate memory using new at a fixed location? My book says to do this:
char *buf=new char[sizeof(sample)];
sample *p=new(buf)sample(10,20);
Here new is allocating memory at buf's address, ...
3
votes
1answer
106 views
What is the meaning of the below sentence in c++ [duplicate]
Possible Duplicate:
C++'s “placement new”
in the below code what does Line 3 represents, is it the way of typecasting? or what
void someCode()
{
char ...
4
votes
5answers
125 views
Use of : Construction of objects at predetermined location in C++
What is the use of Construction of objects at predetermined locations in C++?
The following code illustrates Construction at predetermined location-
void *address = (void *) 0xBAADCAFE ;
MyClass ...
2
votes
3answers
223 views
Freeing memory allocated from placement new
Consider the following code,
#include "iostream"
#include "conio.h"
using namespace std;
class sample
{
private:
int i;
public:
sample(int ii=0) : i(ii){ ...
0
votes
3answers
200 views
Placement new for contiguous memory
I am facing some problems for using placement new for contiguous memory.Please guide me, if there is any other way to do this.
Please refer my code.
#include <new>
...
0
votes
1answer
188 views
how placement new works in c++? [duplicate]
Possible Duplicate:
C++'s “placement new”
I just learned about the placement new operator and tried creating my own memory manager.
Here is the code of my template base ...
8
votes
3answers
128 views
invoking copy constructor inside other constructor
#include <stdlib.h>
#include <iostream>
#include <vector>
#include <string>
class A
{
public:
std::string s;
A()
{
s = "string";
new(this)A(*this);
...
0
votes
2answers
144 views
Placement new to get dynamic sizeing
Based on this question: Variable size type allocation
Will the following work?
{
// size calculated.
std::auto_ptr<Base> p(new((void*)(new char[size])) Packet());
// Do Stuff
}
...
2
votes
2answers
197 views
placement-new address vs raw memory address
The result of a placement new always seems to be the same as the memory pointer that I provide to the placement new. With GCC this seems to hold true even for classes with virtual functions, for ...
11
votes
6answers
740 views
Why should I use placement new?
As it seems, placement new creates a new object on a preallocated memory, so does it mean that it would take less time? Looks like it's faster then allocating using the old ordinary new. Then, if this ...
11
votes
2answers
553 views
Why is this code trying to call the copy constructor?
I just spent an inordinate amount of time fiddling with a complilation error in Visual Studio. I have distilled the code into the small compilable example below and tried it on IdeOne and got the same ...
32
votes
11answers
2k views
malloc & placement new vs. new
I've been looking into this for the past few days, and so far I haven't really found anything convincing other than dogmatic arguments or appeals to tradition (i.e. "it's the C++ way!").
If I'm ...
13
votes
4answers
732 views
How to properly free the memory allocated by placement new?
I've been reading somewere that when you use placement new then you have to call the destructor manually.
Consider the folowing code:
// Allocate memory ourself
char* pMemory = new char[ ...
0
votes
3answers
132 views
How does the compiler knows that a second destructor has to be called, for an object contructed twice, at the same address?
In the code that follows, the object sub in class C is constructed twice. The first construction calls the default ctor Sub() and the second construction uses placement new to reconstruct this object ...
19
votes
6answers
818 views
Can I get a fresh start in C++ without failing again?
Sometimes it's nice to start over. In C++ I can employ this following simple manoeuvre:
{
T x(31, Blue, false);
x.~T(); // enough with the old x
::new (&x) ...
36
votes
4answers
1k views
Array placement-new requires unspecified overhead in the buffer?
5.3.4 [expr.new] of the C++11 Feb draft gives the example:
new(2,f) T[5] results in a call of operator new[](sizeof(T)*5+y,2,f).
Here, x and y are non-negative unspecified values ...
4
votes
1answer
2k views
C++ - overload operator new and provide additional arguments
I know you can overload the operator new. When you do, you method gets sent a size_t parameter by default. However, is it possible to send the size_t parameter - as well as additional user-provided ...
8
votes
2answers
131 views
Does casting a pointer to “void*” have any effect when placement new is called?
I'm reviewing code of a custom container and some portions of it create elements like this:
::new( (void*)&buffer[index] ) CStoredType( other );
and some do like this:
::new( ...
7
votes
2answers
264 views
What's wrong with this use of placement new[]? do
Consider the program below. It has been simplified from a complex case. It fails on deleting the previous allocated memory, unless I remove the virtual destructor in the Obj class. I don't understand ...
