2
votes
Is there a one-liner to read in a file to a string in C++?
How about:
#include <fstream>
#include <sstream>
#include <iostream>
using namespace std;
int main( void )
{
stringstream os(stringstream::out);
os << …
7
votes
How to typedef a pointer to method which returns a pointer the method?
Using just typedef:
class StateMachine {
public:
class StateMethod;
typedef StateMethod (StateMachine::*statemethod)();
class StateMethod {
statemethod …
1
vote
What is the difference between g++ and gcc?
The only notable difference is that i you pass a .c to gcc it will compile as C, whereas g++ will always treat it as C++
…
2
votes
How would I use the >> and << operators for binary data in C++?
Sure it can be done. Just define your own operator>> and operator<< so they do "the right thing"...
I would make it so I would have methods in the class, like toStream(ostream& os …
16
votes
C++ inline functions using GCC - why the CALL?
Like Michael Kohne mentioned, the inline keyword is always a hint, and GCC in the case of your function decided not to inline it.
Since you are using Gcc you can force inline with the __a …
0
votes
Resizing dynamic stack allocations in C++
Hi Jonas,
Since alloca allocations are cummulative, I suggest you do a first alloca to store the "this" pointer, thus becoming the "base" of the stack, keep track of how many elements your …
0
votes
tempnam equivalent in C++
#include <cstdio>
using std::tmpnam;
using std::tmpfile;
You should also check this …
1
vote
is size_t always unsigned?
The size_t should follow the same definition as the C standard, and in several places in the C++ standard it implies it's unsigned natura (particularly in the allocator template argument definition …
2
votes
Where do you track the developments of new c++ standards?
A lot of insiders to the standards working group discuss and post at comp.std.c++ so I guess that would qualify …
