Tagged Questions
The new-operator tag has no wiki summary.
13
votes
10answers
2k views
Why do C# and Java bother with the “new” operator?
Why does the new operator exist in modern languages such as C# and Java? Is it purely a self documenting code feature, or does it serve any actual purpose?
For instance the following example:
Class1 ...
10
votes
2answers
112 views
behavior of new 'each @array' in scalar context
Perl 5.14 gives us the extended each function which operates on arrays as well as hashes:
When called in list context, returns a 2-element list consisting of the key and value for the next element ...
9
votes
3answers
1k views
When is #include <new> library required in C++?
According to this reference entry for operator new
( http://www.cplusplus.com/reference/std/new/operator%20new/ ) :
Global dynamic storage operator
functions are special in the standard
...
9
votes
2answers
1k views
Using constructor without operator 'new'
Please help me to understand why the following code works:
<script>
var re = RegExp('\\ba\\b') ;
alert(re.test('a')) ;
alert(re.test('ab')) ;
</script>
In the first line ...
8
votes
10answers
241 views
c++ what is “pointer = new type” as oppose to “pointer = new type []”?
in many turorials the first code samples about dynamic memory start along the lines of:
int * pointer;
pointer = new int; // version 1
//OR
pointer = new int [20] // version 2
they always ...
8
votes
9answers
3k views
How to initialise memory with new operator in C++?
I'm just beginning to get into C++ and I want to pick up some good habits. If I have just allocated an array of type int with the new operator, how can I initialise them all to 0 without looping ...
8
votes
5answers
679 views
How to prevent a globally overridden “new” operator from being linked in from external library
In our iPhone XCode 3.2.1 project, we're linking in 2 external static C++ libraries, libBlue.a and libGreen.a. libBlue.a globally overrides the "new" operator for it's own memory management. However, ...
7
votes
6answers
1k views
Correct way to initialize dynamic Array in C++
I'm currently working on a C++ project, where dynamic arrays often appear.
I was wondering, what could be the correct way to initialize a dynamic array using the new-operator? A colleague of mine told ...
7
votes
5answers
816 views
Explicitly disallow heap allocation in C++
I have a number of classes that I would like to explicitly disallow heap allocation for. It occurred to me this weekend that I could just declare operator new private (and unimplemented)... Sure ...
6
votes
7answers
247 views
Why would a C++ compiler not eliminate null check of pointer returned by new?
Recently I ran the following code on ideone.com (gcc-4.3.4)
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <new>
using namespace std;
void* operator ...
6
votes
2answers
199 views
Overriding operator new/delete in derived class
I have a stateless, abstract base class from which various concrete classes inherit. Some of these derived classes are stateless as well. Because many of them are created during a run, I'd like to ...
6
votes
6answers
432 views
Shouldn't this code crash
int *p;
while(true)
{
p = new int;
}
Due to running out of memory space, shouldn't this code crash. I have tried printing out the value of p, that is the address of memory located for p, and it ...
6
votes
2answers
164 views
C++ overloaded new[] query : What size does it take as parameter?
I have overloadded operator new[] like this
void * human::operator new[] (unsigned long int count){
cout << " calling new for array with size = " << count << endl ;
...
6
votes
5answers
277 views
Convention in java - “new” oustide of constructor / function?
Simple question. A friend of mind wrote code similar to this one (which is just to explain you my question, it's not useful at all....)
class Example{
private int[] tab = new int[10];
public ...
6
votes
5answers
274 views
In a project that uses a DI framework, should you NEVER use the 'new' operator?
I'm trying to wrap my head around Dependency Injection.
One of the things I'm confused about is whether all of your object instantiation needs to be controlled by the DI framework (Spring, Guice, ...
5
votes
2answers
92 views
Deleting an array of pointers to functions?
Here is what I've copied from MSDN about new operator:
The new operator cannot be used to allocate a function, but it can be
used to allocate pointers to functions. The following example
...
5
votes
3answers
409 views
Does new[] call default constructor in C++?
When I use new[] to create an array of my classes:
int count = 10;
A *arr = new A[count];
I see that it calls a default constructor of A count times. As a result arr has count initialized objects ...
4
votes
1answer
104 views
Is there a way to make content assist in Eclipse (JDT) show up automatically after I type “new”?
Most of the time after typing "new" I press Ctrl-space to quickly choose the necessary class. I want Eclipse to show the tooltip automatically, like VS+Resharper does.
4
votes
2answers
245 views
Do the C++ operators new and new[] throw std::bad_alloc on Android?
Will any exception be thrown when an attempt to allocate memory fails?
I just recently learned that exceptions are supported in Android.
4
votes
3answers
250 views
bad_alloc when calling new on class Texture
This is the offending line:
Texture *texture = new Texture (...);
I receive from bad_alloc here:
void *__CRTDECL operator new(size_t size) _THROW1(_STD bad_alloc)
{ // try to allocate ...
3
votes
4answers
131 views
Why the overrided operator new isn't call?
I run the following code on VS2005:
#include <iostream>
#include <string>
#include <new>
#include <stdlib.h>
int flag = 0;
void* my_alloc(std::size_t size)
{
flag = 1;
...
3
votes
1answer
67 views
Using the new operator with a variable
I'd like to do something like this:
var foo = function(){
this.value = 1;
}
var bar = "foo";
var baz = new bar();
alert(baz.value) // 1
Essentially, I want to create a new object from the ...
3
votes
5answers
183 views
Can calls to memory allocation and constructor be interleaved with other operations required to perform a “new” expression?
Suppose I have a following class:
class Sample {
public:
Sample( int ) {}
};
some function returning an int
int SomeFunction()
{
return 0;
}
and this code:
Sample* sample = new ...
3
votes
4answers
223 views
C++ array creation problem specific to gcc 4.5
The following code works under gcc versions 2.9 through 4.4 but not version 4.5:
struct Pass {
};
int main(void){
Pass **passes = new ( Pass (*[ 10 ]) );
}
The specific error message with gcc ...
3
votes
1answer
169 views
Compile errors when I using CRT Memory Leak Detection
To detect memory leak, new keyword is re-defined.
It's OK if I use [Type 1]. But compile error is occured if I uncomment [Type 2].
Is there any way to use both type of new?
#include <crtdbg.h>
...
3
votes
1answer
370 views
Overloading operator new [] in C++ fails with Visual C++
I have code that overloads operator new. The code below works fine under Linux (gcc4x) but not Windows ( Visual C++ 2008 Express Edition)
The code under Visual Studio 2008 Express Edition reports
...
3
votes
1answer
155 views
Dynamic memory and inherited structs in C++
Say I have some structs like this:
struct A{
int someInt;
}
struct B : public A{
int someInt;
int someOtherInt;
}
And a class:
class C{
A *someAs;
void myFunc(A *someMoreAs){
delete [] ...
3
votes
6answers
3k views
overloading new/delete
I'm making a little memory leak finder in my program, but
my way of overloading new and delete (and also new[] and delete[])
doesn't seem to do anything.
void* operator new (unsigned int size, const ...
3
votes
3answers
2k views
How does the standard new operator work in c++?
What are all the other things a new operator does other than allocating memory and calling a constructor?
2
votes
2answers
89 views
Counting “new” and “delete” bytes
I have a .net project that uses C++ project and is eating a lot of memory.
I wonder if there is quick and easy way to count inflow bytes allocated by new and outflow bytes freed by delete operator. ...
2
votes
4answers
114 views
errors about overload new operator in a template class
I want to overload new operator in a template class. But something wrong happends.
In file test4.h, I defined a class
#include <stddef.h>
#include <iostream>
template <class T>
...
2
votes
6answers
95 views
How to delete the object that is create inside the local function in c++?
I will explain the scenario using example.
void func()
{
CLine* pObj = new CLine();
}
void func2()
{
}
How to delete the CLine object in func2()?
Is it possible?
Thanks
...
2
votes
2answers
64 views
New Object variations
This is a very newbie question, but something completely new to me. In my code, and everywhere I have seen it before, new objects are created as such...
MyClass x = new MyClass(factory);
However, I ...
2
votes
1answer
278 views
Operator new overloading in windows
I am trying to replace the global operator new and delete. In Linux this works fine, but in windows( MSVC 10 ), it sometimes allocates using the system version of operator new and then tries to ...
2
votes
2answers
426 views
Use of new operator -compiled error C2661: 'CObject::operator new' : no overloaded function takes 4 arguments (Multiple Inheritance)
I have the below class in header file
class CodeListSqlGenerator : public ICodeListSqlGenerator,public CDialog
{
........
public:
CodeListSqlGenerator(IIntelligentCodeListUpgraderParameter ...
2
votes
7answers
234 views
C++ Variable Memory Allocation
These are mostly compiler design questions. When your compiler compiles this, for example:
int * pData = new int[256];
How is the memory allocated on-the-fly? Does the compiler make a call to an OS ...
2
votes
9answers
269 views
when should I use the new operator in C++
Say I have a class called Money which has parameters Dollars and Cents
I could initialize it in the followings 2 ways:
Money a(3,15);
Money *b=new Money(3,15);
My question is when should I use ...
2
votes
2answers
269 views
C++: Difference between using the new keyword vs not when instantiating class members?
For a programming assignment, we are given a template class with two members declared not as pointers, but actual objects:
Foo member;
In the constructor, I tried member = *(new Foo()); initially, ...
2
votes
0answers
555 views
What's the difference between C++ constructor `new T` and `new T()`? [closed]
Possible Duplicate:
Do the parentheses after the type name make a difference with new?
I have C/C# background. I'm learning C++.
In C++, there're so many constructor forms. I'm confusing ...
2
votes
3answers
326 views
Overload new operator to store objects in mmap'd file
I have a Linux C++ program with fairly large memory requirements. Most of the memory is consumed by just a few classes, and is accessed reasonably infrequent. I want to move these classes from main ...
2
votes
1answer
141 views
Overriding new but telling unordered_map not to use it
I'm writing a garbage collector for C/C++ as a programming exercise, and part of this involves globally overriding new. However, the garbage collector also uses an unordered_map (to store pointers to ...
2
votes
1answer
106 views
What is the difference between `new` and `new()` for a struct in C/C++? [closed]
Possible Duplicate:
Do the parentheses after the type name make a difference with new?
In some code, I recently saw a struct like this:
typedef struct MyStruct {
int numberOne;
int ...
2
votes
1answer
480 views
Dynamic array allocation of a record in Ada
I am trying to dynamically allocate a large array in Ada (well, an array of an array).
For instance, I'm able to dynamically allocate an object like so:
type Object;
type ObjPtr is access Object;
OP ...
2
votes
4answers
256 views
Am I using new operator correctly?
I have the following pointer.
char **x = NULL;
x is will point to an array of pointers. So is the following code correct?
x = new (nothrow) (*char)[20];
and we will dealocate it using
delete[] ...
2
votes
6answers
670 views
C++ operator new, object versions, and the allocation sizes
I have a question about different versions of an object, their sizes, and allocation. The platform is Solaris 8 (and higher).
Let's say we have programs A, B, and C that all link to a shared library ...
1
vote
3answers
93 views
Calling operator new at global scope
A colleague and I were arguing the compilability of writing this at global scope:
int* g_pMyInt = new int;
My arguments revolved around the fact that calling a function (which new is)
at global ...
1
vote
4answers
114 views
Is there a clean way of handling bad_alloc exceptions thrown inside C++ COM objects?
I'm working on various C++ COM DirectShow filters called from C# clients via COM interop. There's little use of C++ exceptions in the code. The main exception is operator new which can throw bad_alloc ...
1
vote
3answers
128 views
Calling new multiple times within same for loop
Here is a quick snippet of my code to parse PDB files for molecular dynamics simulations:
Structure *s = new Structure(pdb_filename);
Chain *c = new Chain();
while( ... read file ... ) {
if ...
1
vote
2answers
99 views
C# StackTrace not including call to new operator
I come from C++ and I don't understand why in C# when I write :
class A {
public A(){ /*here I get the StackTrace */}
//......other code
void f(){ A a = new A();
}
When I inspect the ...
1
vote
6answers
211 views
In Java, is there a performance difference between new and local?
In C and C++ I know that there could be a huge difference in performance between instantiating objects on the stack vs. using 'new' to create them on the heap.
Is this the same in Java?
The 'new' ...