c++ Programming Glossary: poorly
Why is it not possible to overload class templates? http://stackoverflow.com/questions/11968994/why-is-it-not-possible-to-overload-class-templates a restricted and anomalous form of overloading that fitted poorly with the rest of the language. Bold emphasis mine. I interpret..
Visual Studio 6 tips and tricks [closed] http://stackoverflow.com/questions/147339/visual-studio-6-tips-and-tricks IDEs. So I'd like to hear about some of your best hidden poorly documented IDE features could be for either C or VB . As is..
Google Geolocation API library http://stackoverflow.com/questions/1535619/google-geolocation-api-library IE window in our WPF app. This is a bit cumbersome and poorly re distributable. Any ideas Edit This is a comment from the..
Using Maven for C/C++ projects http://stackoverflow.com/questions/1541771/using-maven-for-c-c-projects I'm putting Maven build around cluster of amateur poorly written and frankly primitive C C code meaning some C some C..
Why are Cdecl calls often mismatched in the “standard” P/Invoke Convention? http://stackoverflow.com/questions/15660722/why-are-cdecl-calls-often-mismatched-in-the-standard-p-invoke-convention declaration is a very common bug. __fastcall is a fairly poorly defined calling convention with mutually incompatible choices...
Which sorting algorithm is used by STL's list::sort()? http://stackoverflow.com/questions/1717773/which-sorting-algorithm-is-used-by-stls-listsort normally expect random access iterators and will work poorly if at all with something like a linked list. To get decent performance..
Why one should not hide a structure implementation that way? http://stackoverflow.com/questions/17619015/why-one-should-not-hide-a-structure-implementation-that-way unaligned access load store are still known to be poorly handled you're likely asking the CPUs to read write twice the..
Why C++ containers don't allow incomplete types? http://stackoverflow.com/questions/18672135/why-c-containers-dont-allow-incomplete-types implementation. In the end it all seemed too murky and too poorly understood the standardization committee didn't think there..
Partially truncating a stream (fstream or ofstream) in C++ http://stackoverflow.com/questions/2261635/partially-truncating-a-stream-fstream-or-ofstream-in-c strongly recommend steering clear of iostreams they're poorly designed heavily C and nasty to look at. Take a look at Boost's..
Dynamically register constructor methods in an AbstractFactory at compile time using C++ templates http://stackoverflow.com/questions/2850213/dynamically-register-constructor-methods-in-an-abstractfactory-at-compile-time-u generally to be avoided because they're often overused as poorly disguised global variables. There are a few times however when..
Are all macros evil? [duplicate] http://stackoverflow.com/questions/319452/are-all-macros-evil However I have seen many more cases where macros were used poorly. I recall one such occasion where I was helping a co worker..
Templates spread across multiple files http://stackoverflow.com/questions/36039/templates-spread-across-multiple-files may or may not provide another workaround. The feature is poorly supported and poorly defined although it in principle should.. another workaround. The feature is poorly supported and poorly defined although it in principle should permit some kind of..
Is C# really slower than say C++? http://stackoverflow.com/questions/5326269/is-c-sharp-really-slower-than-say-c forms of GC. Manual memory management is often just as poorly understood. Just for one example many attempts at comparison..
Compilers and argument order of evaluation in C++ http://stackoverflow.com/questions/621542/compilers-and-argument-order-of-evaluation-in-c order because my guess would be that if they did lots of poorly written code would break rightly so but they would still probably..
C++, __try and try/catch/finally http://stackoverflow.com/questions/7049502/c-try-and-try-catch-finally but not uncommon in other languages. All of this is fairly poorly documented as pointed out in the comments. The proof is in the..
Why do std::string operations perform poorly? http://stackoverflow.com/questions/8310039/why-do-stdstring-operations-perform-poorly do std string operations perform poorly I made a test to compare string operations in several languages.. improve this question It's not that std string performs poorly as much as I dislike C it's that string handling is so heavily..
Will my iPhone app take a performance hit if I use Objective-C for low level code? http://stackoverflow.com/questions/926728/will-my-iphone-app-take-a-performance-hit-if-i-use-objective-c-for-low-level-cod can be slow if the language you're using performs more poorly than another. Is there any hard data comparing Objective C to..
Why is operator% referred to as the “modulus” operator instead of the “remainder” operator? http://stackoverflow.com/questions/9284644/why-is-operator-referred-to-as-the-modulus-operator-instead-of-the-remainder modulus which calls operator . In my opinion that class is poorly named. Digging a little bit it is inherited from STL where it..
|