0
votes
In C++, what alternatives do I have for exposing a collection, from the point of view of performance and data integrity.
Using const is a reasonable choice.
You may also wish to check out the boost C++ library for their shared pointer implementation. It provides the advantages of pointers i.e. you may have the requir …
1
vote
C++ linker unresolved external symbols
If you still wish to get the project to compile using VS2008 (or in the future) I can suggest using a binary editor to view the object file in question mainapp.obj.
Here is an exam …
8
votes
What does the const operator mean when used with a method in C++?
Consider a variation of your class A..
class A {
public:
void Foo() const;
void Moo();
private:
int m_nState; // Could add mutable keyword if desired
int GetState() …
1
vote
STL vector vs map erase
Just as an aside, the STL shipped with MS Visual Studio C++ (Dinkumware IIRC) provides a map implementation with an erase function returning an iterator to the next element.
Th …
1
vote
Casting between multi- and single-dimentional arrays
Each array element should be laid out sequentially in memory by the compiler. The two declarations whilst different types are the same underlying memory structure.
…
2
votes
When do function-level static variables get allocated/initialized?
The compiler will allocate static variable(s) defined in a function foo at program load, however the compiler will also add some additional instructions (machine code) to your function …
1
vote
Interfacing with telephony systems from *nix
I have experience with two telephony standards TAPI, and CSTA, as far as I know there is no such agreement between vendors (e.g. Cisco, Nortel, NEC) regarding THE standard API.
I would reco …
0
votes
Can I use the STL if I cannot afford the slow performance when exceptions are thrown?
I'm struggling to think which portions of the STL specify that they can raise an exception. In my experience most error handling is handled by return codes or as a prerequisite of the STL's use.
An …
0
votes
How can I create a thread-safe singleton pattern in Windows?
You can use an OS primitive such as mutex or critical section to ensure thread safe initialization however this will incur an overhead each time your singleton pointer is accessed (due to acquiring …
1
vote
Reading the Exchange server time via MAPI
I presume you are getting a MAPI event notification when the message arrives in the Exchange mailbox. I would suggest pushing these messages into a queue and waiting n seconds (e.g. 60 …
1
vote
FileLoadException on windows 2003 for managed c++ dll
Have you changed your development environment recently? In particular have you installed a service pack or new release of Visual Studio?
It appears you are linking against a C++ runtime tha …
0
votes
Tracking automatic variable lifetime?
One technique you may find useful is to replace the new/delete operators with your own implementations which mark the memory pages used (allocated by your operator n …
1
vote
Do c++ static libraries without mfc that are linked to an MFC project throw bad_alloc or CMemoryException*?
It will depend on the compile options for the static libraries to be linked to the application.
If the libraries are compiled with a configuration to use the static Standar …
1
vote
Debugging causing exceptions?
I'm referring to VS2005 but it should be applicable in your case. If you access the IDE Debug > Exceptions.. menu item you can specify the exception types that the …
2
votes
Violation reading location in std::map operator[]
If multiple threads are invoking the function DoStuff this will mean that the initialization code
if (mappedChars.empty())
can enter a race condition. …
