Search Results

1
vote

Using boost shared_ptr

If you're using a recent version of Visual C++ on Windows, BoostPro provides a convenient free installer here: http://www.boostpro.com …
1
vote

C++ ctor question (linux)

It's possible that you're being bitten by the so-called "Static Initialization Order Fiasco". Basically, when there is more than one translation unit (that is, C++ source file), and each fi …
2
votes

How to cast member variable pointer to generic type in C++

Are you simply trying to call a function with the address of an integer that happens to live inside an A or a C object? In that case, Jeff McGlynn's answer is the way to …
0
votes

Derivatives in C/C++?

It would certainly be easier to leverage an existing package than to write your own, but if you're determined to write your own, and you are prepared to spend some time learning about some dark cor …
14
votes

Structure of a C++ Object in Memory Vs a Struct

The C++ standard guarantees that memory layouts of a C struct and a C++ class (or struct -- same thing) will be identical, provided that the C++ …
5
votes

Since I can’t return a local variable, what’s the best way to return a string from a C or C++ function?

If you need to do this in C++, using std::string as suggested by Greg Hewgill is definitely the most simple and maintainable strategy. If you are using C, you might consider re …
4
votes

Lazy evaluation in C++

Boost.Lambda is very nice, but Boost.Proto is exactly what you are looking for. It already …
0
votes

Calling a const function from a non-const object

If the cast is too ugly for you, you could instead add a method to Bar that simply returns a const reference to *this: Bar const& as_const() const { …
0
votes

Can you nest C preprocessor directives?

If you are trying to create a segment of preprocessor code that can be called multiple times to perform slightly different things, one (moderately awful) way you can do this is to isolate the code …
2
votes

Can C++ template do this for conditions to improve code?

Your basic problem is that the type of an expression must be knowable at compile time. Is the condition fixed and known at compile time? If so, it will be possible to use …
1
vote

Design of a polling event API

To answer your question quickly, I prefer the simplicity of the "SDL-style code". Mainly because your slightly more complicated "State Style" wastes memory and buys you absolutely nothing (see bel …
0
votes

How can I detect the operating system in C/C++?

The MSVC++ compiler (not windows.h) defines _WIN32 for all builds, so it is a safer macro to check. The MinGW gcc compiler does too. Any cross-compilation envir …
7
votes

Pointer container class which can’t be copied by value

Please use boost::scoped_ptr<> as suggested by Martin York, because it: Does exactly …
3
votes

Why can I assign an existing reference to a literal value in C++?

Here is something you may be surprised to find that you can do though: const int& x = 42; // No error! C++ does allow initialising a const …
0
votes

Array of structs and new / delete

Just to be clear: you refer to calling "delete[]". I think you mean delete. I mention this because C++ has two separate operators, operator delete an …

1 2 3 4 5 10 next
15 30 50 per page