Search Results

2
votes

Memory management in C++

A frequent source of these bugs is when you have a method that accepts a reference or pointer to an object but leaves ownership unclear. Style and commenting conventions can make this less likely. …
0
votes

Java operator overload

Why is it that you think the version with overloading is more reasonable? How often do programmers need to implement new fundamental integer data types? Can you think of an example …
1
vote

execv() and const-ness

const is a C++ thing - execv has taken char * arguments since before C++ existed. You can use const_cast instead of copying, because execv doesn't actually modify its arguments. You might …
0
votes

Cause of a memory leak in C++ when using the Boehm GC

The allocator is deleting your pairs. But deleting a pair doesn't delete members of the pair that happen to be pointers. …
0
votes

Are memory leaks ever ok?

As long as your memory utilization doesn't increase over time, it depends. If you're doing lots of complex synchronization in server software, say starting background threads that block on system c …
6
votes

Most elegant looping construct?

for (int n = get_data(); n != -1; n = get_data()) { send(n); } …
1
vote

What are the consequences of ignoring: warning: unused parameter

It means you wrote a function that takes a parameter but doesn't use the parameter. It's harmless but it might indicate bugs in some cases. Generally you can silence this warning by removi …