15
votes
16answers
3k views
Do you use NULL or 0 (zero) for pointers in C++?
In the early days of C++ when it was bolted on top of C, you could not use NULL as it was defined as (void*)0. You could not assign NULL to any pointer other than void*, which made it kind of usele …
3
votes
*.h or *.hpp for your class definitions
In one of my jobs in the early 90's, we used .cc and .hh for source and header files respectively. I still prefer it over all the alternatives, probably because it's easiest to type.
…
8
votes
C++ last loop iteration (STL map iterator)
If you just want to use a ForwardIterator, this should work:
for ( i = c.begin(); i != c.end(); ) {
iterator cur = i++;
// do something, using cur
if ( i != …
1
vote
Is using size() for the 2nd expression in a for construct always bad?
Always write code the first time exactly as you mean it. If you are iterating over the vector from zero to size(), write it like that. Do not optimise the call to size() into a temporary variable u …
3
votes
How to repeat a string a variable number of times in C++?
Use one of the forms of string::insert:
std::string str("lolcat");
str.insert(0, 5, '.');
This will insert "....." (five dots) at the start of the string (position …
1
vote
Comparison Functor Types vs. operator<
I think the message behind not defining operator< is that ordering is a property of the collection, not of the object. Different collections of the same objects may have different orderings. So …
2
votes
Linux / C++: Get the IP Address of local computer
Further to what Steve Baker has said, you can find a description of the SIOCGIFCONF ioctl in the netdevice(7) man page.
Onc …
7
votes
How to run C/C++ in a Unix console/Mac terminal?
If it is a simple single source program:
make foo
where the source file is foo.c or foo.cpp, etc.
You dont even need a makefile. Make has enough built-in r …
4
votes
Can templates be used to access struct variables by name?
I'm not sure why you cannot use a pointer so I don't know if this is appropriate, but have a look at http://stacko …
1
vote
boost::asio::ip::tcp::resolver::resolve() blocks forever…
It is probably blocking on the call to connect, after the printf.
stdout is line buffered by default, and since you do not have a \n at the end of your printf string, you will not see its o …
1
vote
Howto Pass Filehandle to a Function for Output Streaming
Pass the ofstream by reference:
template <typename T> void prn_vec_os(
const std::vector < T >&arg,
string sep,
ofstream& fn)
Also …
9
votes
Why does operator< need to be overloaded when implementing class-based priority queues in c++?
STL containers use operator< by default to order the contents, for those containers that order the contents.
You can override this by passing in a comparison functor to the constructor o …
0
votes
Normalize file path with WinAPI
To write the least amount of code, you could write a binary predicate that compares to chars as equal if they differ only in case or are both one of the slashes. Then use the stl algorithm …
0
votes
C++ and STL refresher course
For me, the best book on the STL is "Generic Programming and the STL" by Matthew H. Austern. It explains the STL very well from a conceptual point of view, rather then being a reference or tutorial …
2
votes
Is it possible to disable stderr in C++?
freopen(3) is a C-oriented solution (not C++ as the question asked for), and it is just luck that makes it work. It is not specified to work. It only works because when file descriptor 2 is closed …
