Search Results

11
votes
17answers
1k views

C++ example of Coding Horror or Brilliant Idea?

At a previous employer, we were writing binary messages that had to go "over the wire" to other computers. Each message had a standard header something like: class Header { int …
0
votes

Use of ‘const’ for function parameters

const is pointless when the argument is passed by value since you will not be modifying the caller's object. const should be preferred when passing by reference, unless the purpose of the f …
1
vote

Best way to store currency values in C++

Know YOUR range of data. A float is only good for 6 to 7 digits of precision, so that means a max of about +-9999.99 without rounding. It is useless for most financial applications. …
1
vote

MPI or Sockets

I have not used MPI, but I have used sockets quite a bit. There are a few things to consider on high performance sockets. Are you doing many small packets, or large packets? If you are doing many s …
3
votes

Which I/O library do you use in your C++ code?

In principle I would use iostreams, in practice I do too much formatted decimals, etc that make iostreams too unreadable, so I use stdio. Boost::format is an improvement, but not quite motivating e …
2
votes

Why shouldn’t you use references to smart pointers?

When using smart pointers (or any allocation management object) you are counting on the behaviors defined in the constructor/destructor to manage refs/derefs/locks/unlocks. As a result, those type …
0
votes

Why “delete [][]… multiDimensionalArray;” operator in C++ does not exist

delete[] applies to any non-scalar (array). …
0
votes

Good Book on C++ Internals?

SGI produced a book called "C++ Language System Overview" which had several articles on the physical implementation of the language. Of particular interest was an article by Stroustrup on how mult …
0
votes

Why use hex?

To be more precise, hex and decimal, are all NUMBERS. The radix (base 10, 16, etc) are ways to present those numbers in a manner that is either clearer, or more convenient. When discussing …
0
votes

macro definition containing #include directive

I will not argue the merits for it, but freetype (www.freetype.org) does the following: #include FT_FREETYPE_H where they define FT_FREETYPE_H elsewhere …
11
votes

Could C++ have not obviated the pimpl idiom?

This would be a nice feature, however: This has to do with the size of the object. When the h file is read, the size of the object is known (based on all its contained elements). If the …
3
votes

Will .net take over c/c++ any time?

This is similar to what a professor of mine said in the early 80s - PASCAL should be used for everything. I don't think so. Different languages have different purposes. The problem is that people …
1
vote

Determining the alignment of C/C++ structures in relation to its members

As the others mentioned, its implementation dependant. Visual Studio 2005 uses 8 bytes as the default structure alignment. Internally, items are aligned by their size - a float has 4 byte alignmen …