c++ Programming Glossary: wondering
#pragma once vs include guards? http://stackoverflow.com/questions/1143936/pragma-once-vs-include-guards tightly with excel so it's not going anywhere . I'm wondering if I should go with the traditional include guards or use #pragma..
Best C/C++ Network Library [closed] http://stackoverflow.com/questions/118945/best-c-c-network-library I haven't done work in C C for a little bit and was just wondering what people's favorite cross platform libraries are to use...
Why doesn't C++ have a garbage collector? http://stackoverflow.com/questions/147130/why-doesnt-c-have-a-garbage-collector have a garbage collector when it was first created. I'm wondering why the collector can't be added in. c garbage collection c..
C state-machine design http://stackoverflow.com/questions/1647631/c-state-machine-design machine at the heart of one of my worker thread. I was wondering if you gurus on SO would share your state machine design techniques...
Why should exceptions be used conservatively? http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively they should be saved for special circumstances but I'm wondering what the consensus rationale is if such a thing exists . c..
Which Typesafe Enum in C++ Are You Using? http://stackoverflow.com/questions/217549/which-typesafe-enum-in-c-are-you-using knowledge that built in enums in C are not typesafe. I was wondering which classes implementing typesafe enums are used out there.....
Why do people use __(double underscore) so much in C++ http://stackoverflow.com/questions/224397/why-do-people-use-double-underscore-so-much-in-c at the start of variable names. return __CYGWIN__ Just wondering is there a reason for this or is it just some people code styles..
Alternative to itoa() for converting integer to string C++? http://stackoverflow.com/questions/228005/alternative-to-itoa-for-converting-integer-to-string-c to itoa for converting integer to string C I was wondering if there was an alternative to itoa for converting an integer..
Memory management in Qt? http://stackoverflow.com/questions/2491707/memory-management-in-qt management in Qt I'm quite new to Qt and am wondering on some basic stuff with memory management and the life of objects...
Is it better in C++ to pass by value or pass by constant reference? http://stackoverflow.com/questions/270408/is-it-better-in-c-to-pass-by-value-or-pass-by-constant-reference in C to pass by value or pass by constant reference I am wondering which is better practice. I realize that pass by constant reference..
Does the C++ standard mandate poor performance for iostreams, or am I just dealing with a poor implementation? [closed] http://stackoverflow.com/questions/4340396/does-the-c-standard-mandate-poor-performance-for-iostreams-or-am-i-just-deali and therefore there were too many cache hits. I was wondering how vector char was outperforming char . It didn't make much..
Pretty-print C++ STL containers http://stackoverflow.com/questions/4850473/pretty-print-c-stl-containers magic here on SO that I never thought possible so I'm wondering if anyone can suggest something that would match all containers..
eof() bad practice? [duplicate] http://stackoverflow.com/questions/5837639/eof-bad-practice use it without really specifying the reason. So I was wondering is there a good reason Thanks Sam c eof share improve this..
Dealing with accuracy problems in floating-point numbers http://stackoverflow.com/questions/590822/dealing-with-accuracy-problems-in-floating-point-numbers with accuracy problems in floating point numbers I was wondering if there is a way of overcoming an accuracy problem that seems..
C++: What is the size of an object of an empty class? http://stackoverflow.com/questions/621616/c-what-is-the-size-of-an-object-of-an-empty-class What is the size of an object of an empty class I was wondering what could be the size of an object of an empty class . It surely..
When should I use the new keyword in C++? http://stackoverflow.com/questions/655065/when-should-i-use-the-new-keyword-in-c in C I've been using C for a short while and I've been wondering about the new keyword. Simply should I be using it or not 1..
I've heard i++ isn't thread safe, is ++i thread-safe? http://stackoverflow.com/questions/680097/ive-heard-i-isnt-thread-safe-is-i-thread-safe could be interrupted by a context switch. However I'm wondering about i. As far as I can tell this would reduce to a single..
Executing cv::warpPerspective for a fake deskewing on a set of cv::Point http://stackoverflow.com/questions/7838487/executing-cvwarpperspective-for-a-fake-deskewing-on-a-set-of-cvpoint the green rectangle display the area of interest. I was wondering if it's possible to achieve the effect I'm hoping for using..
Is there any overhead to declaring a variable within a loop? (C++) http://stackoverflow.com/questions/982963/is-there-any-overhead-to-declaring-a-variable-within-a-loop-c to declaring a variable within a loop C I am just wondering if there would be any loss of speed or efficiency if you did..
|