1
vote
How can I increase the performance in a map lookup with key type std::string?
Here are some things you can consider:
0) Are you sure this is where the performance bottleneck is? Like the results from Quantify, Cachegrind, gprof or something like that? Because looku …
8
votes
demote boost::function to a plain function pointer
I think you want to use the target() member function of boost::function (isn't that a mouthful...)
#include <boost/function.hpp>
#include <iostream>
int f(int x)
{
re …
1
vote
Outputting to stderr whenever malloc/free is called
I have not tested this myself, but I am pretty sure these would work:
Since you do not want to re-compile the library, giving meaningful output (vs. just "new called for 23 bytes") …
13
votes
Is there any reason not to make a member function virtual?
One way to read your questions is "Why doesn't C++ make every function virtual by default, unless the programmer overrides that default." Without consulting my copy of "Design and Evolution of C++ …
2
votes
Enum in C++ like Enum in Ada?
One of my colleagues has implemented a tool to generate classes that do most (if not all) of what you want:
http://code.google.com …
4
votes
CUDA: Wrapping device memory allocation in C++
I would go with the placement new approach. Then I would define a class that conforms to the std::allocator<> interface. In theory, you could pass this class as a template parameter into std:: …
1
vote
Determine if two rectangles overlap each other?
Ask yourself the opposite question: How can I determine if two rectangles do not intersect at all? Obviously, a rectangle A completely to the left of rectangle B does not intersect. Also if A is …
0
votes
Fast container for setting bits in a sparse domain, and iterating (C++)?
How much memory do you have? 32-bits take "only" 4GB/8 bytes, which comes to 512MB, not much for a high-end server. That would make your insertions O(1). But that could make the iteration slow. …
1
vote
How to declare/define a class with template template parameters without using an extra template parameter
What is wrong with:
template <typename C >
struct B
{
C c;
};
int main()
{
B< A<int> > b;
return 0;
}
…
2
votes
Writing Multithreaded Exception-Safe Code
As others have discussed, concurrency (and thread-safety in particular,) is an architectural issue, that affects how you design your system and your application.
But I would like to take yo …
0
votes
C++ design question - Network packets and serialization
To have a Factory class that does not know about all the types ahead of time you need to provide a singleton where each class registers itself. I always get the syntax for defining static members …
2
votes
Nested Template Specialization
According to these posts:
http://www.cpptalk.net/template-member-function-specialization …
0
votes
ACE (C++): Not calling cancel_timer == MLK?
I think the answer is "it depends". With anything but relative ancient versions of ACE, you can have the Reactor (or Timer_Queue) increase the reference count on your event handler, and decrement …
3
votes
Efficiently convert between Hex, Binary, and Decimal in C/C++
As others have pointed out, I would start with sscanf(), printf() and/or strtoul. They are fast enough for most applications, and they are less likely to have bugs. I will say, however, that thes …
0
votes
Cross-platform alternative to COM
Why do you think that CORBA is not fast enough? Have you measured things recently?
Modern implementations of CORBA can make remote calls in less than 150 usecs. Way below your 2msec budge …
