c++ Programming Glossary: sounds
Handling large numbers in C++? http://stackoverflow.com/questions/117429/handling-large-numbers-in-c biginteger largenumber share improve this question It sounds like you're looking for a way to enter Arbitrary Precision numbers...
Is std::string thead-safe with gcc 4.3? http://stackoverflow.com/questions/1594803/is-stdstring-thead-safe-with-gcc-4-3 if and only if it activly avoids possible data races. It sounds like a copy on write implementation of std basic_string must..
C state-machine design http://stackoverflow.com/questions/1647631/c-state-machine-design passing where necessary. This isn't as bad as it sounds since the FSM is usually locked up inside a single compilation..
Help a C++ newbie understand his mistakes: header files and cpp files http://stackoverflow.com/questions/1686204/help-a-c-newbie-understand-his-mistakes-header-files-and-cpp-files can take a matter of hours instead of seconds. Oh no That sounds horrible However can I prevent this dire fate Unfortunately.. files instead. But surely it must be possible Programming sounds like pure torture otherwise What if I found some way to separate..
How to get main window handle from process id? http://stackoverflow.com/questions/1888863/how-to-get-main-window-handle-from-process-id process each belongs to GetWindowThreadProcessID . This sounds indirect and inefficient but it's not as bad as you might expect..
the specified module could not be found 0x8007007E http://stackoverflow.com/questions/2066180/the-specified-module-could-not-be-found-0x8007007e I said I can never step into the method anyways. Since it sounds like a DLL dependency issue I ran Dependency Walker. Dependency..
Coding Practices which enable the compiler/optimizer to make a faster program http://stackoverflow.com/questions/2074099/coding-practices-which-enable-the-compiler-optimizer-to-make-a-faster-program 0 i numFoo i barTemp.munge foo1 foo2 i barOut barTemp It sounds silly but the compiler can be much smarter dealing with the..
C/C++ function definitions without assembly http://stackoverflow.com/questions/2442966/c-c-function-definitions-without-assembly of layers to go through before you can find that place It sounds like you have some preconceptions based on the DOS days and..
References Needed for Implementing an Interpreter in C/C++ http://stackoverflow.com/questions/294852/references-needed-for-implementing-an-interpreter-in-c-c for this project. Self contained is better even if this sounds like NIH. What I'm really looking for is reading material on..
Public Data members vs Getters, Setters http://stackoverflow.com/questions/2977007/public-data-members-vs-getters-setters I agree having private data members in Base classes sounds logical. But besides that having private members and so do their..
How to convert a single char into an int http://stackoverflow.com/questions/439573/how-to-convert-a-single-char-into-an-int If you're not worried about encodings and as this sounds like homework I doubt you are you can utilize the fact that..
What C++ Smart Pointer Implementations are available? http://stackoverflow.com/questions/5026197/what-c-smart-pointer-implementations-are-available thread safe sharable pointer custom deletes array support sounds like everything a smart pointer should be. This is what I primarily..
How to implement the factory pattern in C++ correctly http://stackoverflow.com/questions/5120768/how-to-implement-the-factory-pattern-in-c-correctly because I honestly don't know how to do it even though it sounds simple How do I implement the Factory pattern in C correctly.. thought of. 0 Don't make factories make constructors. This sounds nice and indeed often the best solution but is not a general..
Is there a C pre-processor which eliminates #ifdef blocks based on values defined/undefined? http://stackoverflow.com/questions/525283/is-there-a-c-pre-processor-which-eliminates-ifdef-blocks-based-on-values-define this question I know absolutely nothing about C but it sounds like you are looking for something like unifdef . Note that..
Const before or const after? http://stackoverflow.com/questions/5503352/const-before-or-const-after you prefer or need one over the other if any Edit So it sounds like this was an arbitrary decision when the standard for how..
How do I build an import library (.lib) AND a DLL in Visual C++? http://stackoverflow.com/questions/584041/how-do-i-build-an-import-library-lib-and-a-dll-in-visual-c
Accessing private members http://stackoverflow.com/questions/726096/accessing-private-members question Define permissions institutional permission That sounds like not a programming problem but something to talk to whoever..
Does dynamic memory allocation differ in C and C++ in popular implementations? http://stackoverflow.com/questions/7443782/does-dynamic-memory-allocation-differ-in-c-and-c-in-popular-implementations Feel free to chime in if that's mistaken but it sounds like one would benefit from taking this into account. For a..
Make interchangeable class types via pointer casting only, without having to allocate any new objects? http://stackoverflow.com/questions/11219159/make-interchangeable-class-types-via-pointer-casting-only-without-having-to-all of the same type as the first non static data member. Sounds like working with something like this would tie my hands a bit..
0xC0020001: The string binding is invalid. - Only occurring in WPF http://stackoverflow.com/questions/11835748/0xc0020001-the-string-binding-is-invalid-only-occurring-in-wpf initialize some needed native subsystem like CRT or ATL . Sounds like you have a mixed mode DLL of some sort. One recommended..
Parse config file in C/C++ http://stackoverflow.com/questions/1417765/parse-config-file-in-c-c End Any suggestions c share improve this question Sounds like you want to parse a file that's pretty close to an ini..
Adding an include guard breaks the build http://stackoverflow.com/questions/1744144/adding-an-include-guard-breaks-the-build in the define it compiles fine. What could be the problem Sounds like the file is already declared but I do not know where. I'm..
What's the use of const here http://stackoverflow.com/questions/2025159/whats-the-use-of-const-here const over here c const share improve this question Sounds like you've got the right idea in C const on a method of an..
Programatically detect number of physical processors/cores or if hyper-threading is active on Windows, Mac and Linux http://stackoverflow.com/questions/2901694/programatically-detect-number-of-physical-processors-cores-or-if-hyper-threading this is 1 plus ECX 7 0 from CPUID function 0x80000008 Sounds difficult but here is a hopefully platform independent C program..
Simple text menu in C++ http://stackoverflow.com/questions/290484/simple-text-menu-in-c and then execute the action associated with that command. Sounds simple enough. In C# I would end up writing a list map of commands..
Learning C++/Java coming from python http://stackoverflow.com/questions/3973899/learning-c-java-coming-from-python either find books that's really advanced or very basic. Sounds like 'very basic' is where you should start. You can't assume..
Is it safe to push_back 'dynamically allocated object' to vector? http://stackoverflow.com/questions/4185350/is-it-safe-to-push-back-dynamically-allocated-object-to-vector throws which we know it won't since T is a pointer type . Sounds reasonable but reasonable guaranteed. So unless there's a beneficial..
XML Schema to C++ Classes http://stackoverflow.com/questions/445905/xml-schema-to-c-classes xml qt xsd code generation share improve this question Sounds to me like CodeSynthesis is exactly what you are looking for...
Memory allocation in C++ http://stackoverflow.com/questions/4687310/memory-allocation-in-c pubVar that are components of the object stored on stack Sounds contradictory to me. Shouldn't the lifetime of pubvar and pBar..
Easiest way to build a cross-platform application http://stackoverflow.com/questions/4780316/easiest-way-to-build-a-cross-platform-application Your thoughts Thanks in advance for your contribution Edit Sounds like there are a lot of popular responses on Java and Qt. What..
How to build my HelloWorld Android application with Necessitas (qt port)? http://stackoverflow.com/questions/5422931/how-to-build-my-helloworld-android-application-with-necessitas-qt-port android c qt qt necessitas share improve this question Sounds for me as if you did not select any target platform respectively..
Is it possible to emulate template<auto X>? http://stackoverflow.com/questions/5628121/is-it-possible-to-emulate-templateauto-x x decltype x x f.bar AUTO_ARG 5 f.bar AUTO_ARG Baz bang Sounds like you want a generator template typename T struct foo foo..
How to reduce a bigger string in smaller string in C++? Probably by hashing? http://stackoverflow.com/questions/5835946/how-to-reduce-a-bigger-string-in-smaller-string-in-c-probably-by-hashing later string s xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx s Edit Sounds like you want a hash function there are a zillion out there..
What is the closest thing windows has to fork()? http://stackoverflow.com/questions/985281/what-is-the-closest-thing-windows-has-to-fork linger waiting for their exec'd Cygwin process to exit. Sounds like a lot of work doesn't it And yes it is slooooow. EDIT the..
strict aliasing and alignment http://stackoverflow.com/questions/9964418/strict-aliasing-and-alignment result is more complicated and is affected by the process. Sounds stupid Even so the compiler cannot distinguish between stupid..
|