The operator-new tag has no wiki summary.
30
votes
7answers
8k views
Create an empty object in JavaScript with {} or new Object()?
There are two different ways to create an empty object in JavaScript:
var objectA = {}
var objectB = new Object()
Is there any difference in how the script engine handles them? Is there any reason ...
14
votes
1answer
327 views
Can C++0x still explicitly allocate with global operator new?
Wikipedia states:
A type can be made impossible to allocate with operator new:
struct NonNewable {
void *operator new(std::size_t) = delete;
};
An object of this type can only ever be ...
12
votes
4answers
481 views
why call operator new explicitly
I saw code like this:
void *NewElts = operator new(NewCapacityInBytes);
And matching call explicitly operator delete is used consequent later.
Why do this instead of:
void *NewElts = new ...
10
votes
2answers
223 views
Is there a C++ allocator that respects an overridden new/delete?
I'm implementing a resource-allocating cloning operation for an array of type T. The straightforward implementation uses new T[sz] followed by a std::copy call from the source into the new array. It ...
8
votes
3answers
299 views
private operator delete in c++
I'm working on a garbage-collection mechanism for a family of objects in one of my projects. What I want to have is allocate these objects dynamically with new and never having to call delete.
This ...
5
votes
3answers
107 views
Would combining raw operator new, placement new and standard delete be legal?
guys! Out of curiosity – the following code would probably not be legal, would it?
T *p = ::operator new(sizeof(T)); // allocate memory for a T
new (p) T; // construct a T into the allocated memory
...
5
votes
3answers
392 views
Operator delete causing heap corruption while operator new working fine
I have got operator new working but as soon as I call delete, it crashes at the free (ptr) line. Can any one tell what I am doing wrong when overloading operator new and delete in this Base class? ...
5
votes
5answers
586 views
STL allocators and operator new[]
Are there STL implementations that use operator new[] as an allocator? On my compiler, making Foo::operator new[] private did not prevent me from creating a vector<Foo>... is that behavior ...
4
votes
5answers
167 views
Simulating new[] with argument constructor
If I am not modifying any static variable inside the argument constructor, is below the proper way to simulate new T[N] (x,y); (array new with arguments) ?
template<typename T>
void* operator ...
4
votes
1answer
1k views
No matching function for call to operator new
I'm trying to wrap a class from a library I'm using in Lua. Specifially, I'm trying to wrap the color class from SFML. The full source for the color class can be seen here and here.
This is the ...
3
votes
3answers
150 views
Thread safety for overloaded operator new
Though standard doesn't guarantee the thread-safety for new, most of the multi-threading operating systems support thread-safe operator new.
I am implementing my own memory management for the dynamic ...
3
votes
3answers
89 views
Is it undefined to initialize a class member in overloaded operator new?
Take a small example where, I am trying to find out if a variable is allocated on heap or not:
struct A
{
bool isOnHeap;
A () {} // not touching isOnHeap
~A () {}
void* operator new (size_t ...
3
votes
2answers
234 views
operator new inside namespace
namespace X
{
void* operator new (size_t);
}
gives error message as:
error: ‘void* X::operator new(size_t)’ may not be declared within a namespace
Is it a gcc compiler bug ? In older gcc ...
3
votes
3answers
146 views
Does a private new operator have any unexpected side effects?
I read in this blog, that making the new operator private is a good approach to enforce instantiation on the stack.
I am implementing a class that employs the RAII idiom. This class should obviously ...
3
votes
3answers
171 views
Are there any problems with this overload of operator new?
I was thinking about some memory pool/allocation stuff I might write so I came up with this operator new overload that I want to use to facilitate reuse of memory. I'm wondering if there are any ...
2
votes
1answer
107 views
Type aliasing and dynamically allocated arrays
I'm trying to facilitate automatic vectorization by the compiler in the blitz++ array library. For this reason, I'd like to present a view of the array data that is in chunks of fixed-length vectors, ...
2
votes
1answer
296 views
Inconsistent operator new/delete calling
I'm having some trouble with a dynamically linked library calling my overloaded operator delete but not my operator new. My exe looks something like this:
class A {
public:
void func() {
...
1
vote
3answers
68 views
object declaration and definition in c++ [closed]
Possible Duplicate:
Do the parentheses after the type name make a difference with new?
I saw someone uses the constructor like this:
class Foo
{
public: Foo();
};
int main(){
Foo *f= ...
1
vote
4answers
126 views
What is difference between new and new[1]?
What is difference between new and new[1]? Can I use delete with new[1]?
Edit
Well well well, I should've provided the background, sorry for that. I was evaluating BoundsChecker at work with VS 2010 ...
1
vote
1answer
107 views
Allow objects to be allocated only using dynamic allocation [closed]
I am working on a small library, where I have following requirements for any class X:
class X must be allocatable only using operator new
All the children of class X should implicitly become ...
1
vote
5answers
152 views
Why isn't operator new forced to take argument as “const size_t”?
Not using below thing anywhere but still this question was in my mind for long.
void* operator new (size_t size)
{
// distort `size` to other value
return malloc(size);
}
Having know that above ...
1
vote
4answers
583 views
operator new for array of class without default constructor
For a class without default constructor, operator new and placement new can be used to declare an array of such class.
When I read the code in More Effective C++, I found the code as below(I ...
0
votes
1answer
89 views
XCode iOS operator new custom implementation
XCode issues warning for my implementation of global operator new:
void *operator new(size_t blocksize);
It says: 'operator new' is missing exception specification 'throw(std::bad_alloc)'
But my ...
0
votes
4answers
119 views
Deleting a doublepointer (matrix)
I am solving a quantum-mech problem which requires me to find some eigenvalues by manipulating some matrices. The specifics of this problem is not relevant, I just need help with the c++ problem, I am ...
-3
votes
1answer
65 views
How to bind/relate a object reference with new[] (array)?
It's common to have reference bound to a simple object as,
T& t = *new T;
But, how to relate a reference with the output of new[] ?
T& ??? = *new T[size];
[Note: Here is one possible ...