0
votes
What does the GDB backtrace message “0x0000000000000000 in ?? ()” mean?
I could be missing something, but isn't this indicative of someone using NULL as a function pointer?
#include <stdio.h>
typedef int (*funcptr)(void);
int
func_c …
1
vote
using a vector of column names, to generate a sql statement.
Not to belabor the point but take a look at boost::algorithm::join(). Here's an example in case you think that their documentation is too dense for words:
std::string
build_sql(std: …
3
votes
Most used parts of Boost
boost::shared_ptr is a requirement for modern C++ programming IMHO. That's why they added it to the standard with TR1. boost::program_options, boost::bind, an …
0
votes
C++ converting a mac id string into an array of uint8_t
I hate to answer this in this fashion, but sscanf() is probably the most succinct way to parse out a MAC address. It handles zero/non-zero padding, width checking, case folding, and al …
2
votes
How do you search a std::string for a substring in C++?
I'm surprised that no one mentioned regular expressions. They were added as part of TR1 and are included in …
33
votes
Is it possible to exit a for before time in C++, if an ending condition is reached?
Despite the "goto considered harmful" arguments, this seems like the perfect place for goto. That's essentially what you are doing in Perl. Seriously... consider the alter …
2
votes
OS X equivalent to OutputDebugString() ?
You might want to look into syslog since it is the de facto diagnostic method on UNIX-based systems. Something like:
#include <syslog.h>
/* Do this early on in y …
6
votes
C++: is string.empty() always equivalent to string == “”?
It should be. The ANSI/ISO standard states in 21.3.3 basic_string …
1
vote
Implementation in global functions, or in a class wrapped by global functions
litb is probably correct. The only reason that you would …
2
votes
What is the best way to do input validation in C++ with cin?
How about a combination of the various approaches:
Snag the input from std::cin using std::getline(std::cin, strObj) where strObj is a …
-3
votes
Checking if a double (or float) is nan in C++
I believe that the "C++ way" to do this is to either use Boost or do something like:
#if I_HAVE_TR1
#include <cmath> // defines std::tr1::isnan<T>
#else
#include <lim …
1
vote
Networking Framework for C++ (UDP or TCP)?
There are a bunch of frameworks out there (e.g., Poco, ACE). It depends o …
7
votes
.bss section in elf file
The .bss section in an ELF file is used for static data which is not initialized programmatically but guaranteed to be set to zero at runtime. Here's a little example …
1
vote
C++: Multiple inheritance + virtual function mess
You might want to look at Loki TypeLists if you really need to be able to track ancestry and enumerate through types. I'm not sure if w …
7
votes
Isn’t the Factory pattern the same thing as global state?
Are you confusing concepts here?
The Factory pattern is usually applied when you are returning an instance of a concrete class that hides behind an abstract interface. The idea is that the …
