3
votes
Middleware API Best Practices, What are they?
My two favourite resources on the subject: http://mollyrocket.com/873 and …
0
votes
How do you detect/avoid Memory leaks in your (Unmanaged) code?
My take on the subject: http://msinilo.pl/blog/?cat=7 (tested on real-life, BIG applications).
…
-2
votes
Three dimensional arrays of integers in C++
Pieter's suggestion is good of course, but one thing you've to bear in mind is that in case of big arrays building it may be quite slow. Every time vector capacity changes, all the data has to be c …
1
vote
Implementing scripts in c++ app
One more vote for Lua. It's small, it's fast, it doesnt consume much memory (for games your best bet is to allocate big buffer at the initialization and re-direct all Lua memory allocations there). …
1
vote
is there a way to write macros with a variable argument list in visual C++?
If you do not want to use non-standard extensions, you've to provide extra brackets:
#define DBGPRINT(args) printf(args);
DBGPRINT(("%s\n", "Hello World"));
…
3
votes
Find memory leaks caused by smart pointers
The way I do it is simply:
- on every AddRef() record call-stack,
- matching Release() removes it.
This way at the end of the program I'm left with AddRefs() without maching Releases. No need to ma …
0
votes
Dynamically sorted STL containers
For "STL compatible" sorted vector see A. Alexandrescu's AssocVector from Loki.
…
16
votes
What’s the best Free C++ Profiler for windows (if there are)
AMD Code Analyst is free, but not as advanced as VTune. There's also Sleepy, which is very simple, but does the job in many cases. …
0
votes
Dynamically sorted STL containers
It's not that simple. In my experience insert/delete is used less often than find. Advantage of sorted vector is that it takes less memory and is more cache-friendly. If happen to have version that …
0
votes
Find memory leaks caused by smart pointers
It's not a matter of finding a leak. In case of smart-pointers it'll most probably direct to some generic place like CreateObject(), which is being called thousands of time. It's a matter of determ …
10
votes
What is the best source to learn C++?
I wouldnt say Stroustrup's book is the best for beginners, it's rather terse (still worth reading of course, but maybe not as the first on the subject). Try Bruce Eckel's …
1
vote
What’s the best alternative to C++ for real-time graphics programming?
There are no true alternatives for big AAA titles, especially on the consoles. For smaller titles C# should do.
…
16
votes
Is there a Technique in C++ to know if a class has a member function of a given signature
I'm not sure if I understand you correctly, but you may exploit SFINAE to detect function presence at compile-time. Example from my code (tests if class has member function size_t used_memory() con …
4
votes
C++ unit testing framework
I'm a big fan of UnitTest++, it's very lightweight, but does the job. You can run single tests there easily.
…
2
votes
Export variable from C++ static library
Are they defined in .cpp file as well? Roughly, it should look like:
struct Format
{
[...]
static Format gFmt128;
};
// Format.cpp
Format Format::gFmt128 = { 0, 128, 0 }
…
