¡@

Home 

c++ Programming Glossary: explaining

Creating a ZIP file on Windows (XP/2003) in C/C++

http://stackoverflow.com/questions/118547/creating-a-zip-file-on-windows-xp-2003-in-c-c

Shell32.Application CopyHere method and I found a tutorial explaining how to do it in C# also but nothing for the C API C is fine..

Why do I need strand per connection when using boost::asio?

http://stackoverflow.com/questions/12794107/why-do-i-need-strand-per-connection-when-using-boostasio

operations such as boost asio async_write . Before explaining the details lets first cover the thread safety model with Boost.Asio...

How to handle a ctrl-break signal in a command line interface

http://stackoverflow.com/questions/181413/how-to-handle-a-ctrl-break-signal-in-a-command-line-interface

from before apparently I didn't do a very good job at explaining it. One more time... I am building a command line interface..

Static variable initialization?

http://stackoverflow.com/questions/1831290/static-variable-initialization

0 is used although indeed it sounds slightly arbitrary but explaining 1 or 1024 seems to be even harder especially that the variable..

Constants and compiler optimization in C++

http://stackoverflow.com/questions/212237/constants-and-compiler-optimization-in-c

to optimize the code not even the good books go on explaining what happens behind the curtains. For example how does the compiler..

Interpretation of int (*a)[3]

http://stackoverflow.com/questions/2250397/interpretation-of-int-a3

sure about how and why this works there are many answers explaining exactly when the name of an array decays to a pointer and when..

Microsecond resolution timestamps on Windows

http://stackoverflow.com/questions/2414359/microsecond-resolution-timestamps-on-windows

Providing Multimedia Timer Support . It does a good job of explaining the various timers available and their limitations. It might..

This code appears to achieve the return of a null reference in C++

http://stackoverflow.com/questions/2894891/this-code-appears-to-achieve-the-return-of-a-null-reference-in-c

looks like returning a null reference to me. Any advice in explaining why this works or why it shouldn't would be greatly appreciated...

What is the most efficient thread-safe C++ logger?

http://stackoverflow.com/questions/439791/what-is-the-most-efficient-thread-safe-c-logger

is 100 type safe see this article about a related library explaining why printf iostream based libraries are not type safe share..

Some clarification needed about synchronous versus asynchronous asio operations

http://stackoverflow.com/questions/5282659/some-clarification-needed-about-synchronous-versus-asynchronous-asio-operations

The Boost.Asio documentation really does a fantastic job explaining the two concepts. As Ralf mentioned Chris also has a great blog.. asynchronous concepts. The parking meter example explaining how timeouts work is particularly interesting as is the bind..

What are the barriers to understanding pointers and what can be done to overcome them?

http://stackoverflow.com/questions/5727/what-are-the-barriers-to-understanding-pointers-and-what-can-be-done-to-overcome

memory on a low level basis. However for the intents of explaining memory and pointers it is accurate enough. Let's assume the.. This is usually the concept that I have the most problem explaining to people two pointers does not mean two objects or memory blocks...

How computer does floating point arithmetic?

http://stackoverflow.com/questions/6033184/how-computer-does-floating-point-arithmetic

does floating point arithmetic I have seen long articles explaining how floating point numbers can be stored and how the arithmetic..

trivial vs. standard layout vs. POD

http://stackoverflow.com/questions/6496545/trivial-vs-standard-layout-vs-pod

important point is static vs. dynamic initialization but explaining that to a layman would be several pages in itself... PODs were..

Is it smart to replace boost::thread and boost::mutex with c++11 equivalents?

http://stackoverflow.com/questions/7241993/is-it-smart-to-replace-boostthread-and-boostmutex-with-c11-equivalents

and that it is horrible because you depend on it I tried explaining the quality of boost then gave up after some time . Smaller..

Can the “Application Error” dialog box be disabled?

http://stackoverflow.com/questions/735170/can-the-application-error-dialog-box-be-disabled

I will sometimes get a Application Error dialog box explaining that an instruction referenced memory that could not be read...

What is “rvalue reference for *this”?

http://stackoverflow.com/questions/8610571/what-is-rvalue-reference-for-this

wrong we have to dig in the C standard for a bit the part explaining why @Nicol's answer is wrong is at the bottom if you're only..

Singleton: How should it be used

http://stackoverflow.com/questions/86582/singleton-how-should-it-be-used

be a list of Anti Usages and common bad implementations explaining why they fail to work and for good implementations their weaknesses...

With explicitly deleted member functions in C++11, is it still worthwhile to inherit from a noncopyable base class?

http://stackoverflow.com/questions/9458741/with-explicitly-deleted-member-functions-in-c11-is-it-still-worthwhile-to-inh

than understanding what the delete syntax means. Any book explaining the syntax rules of C 11 will tell you exactly what that does...