User Steve Fallows - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T03:40:36Z http://stackoverflow.com/feeds/user/18882 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1869439/header-inclusion-optimization/1869644#1869644 2 Answer by Steve Fallows for Header inclusion optimization Steve Fallows 2009-12-08T20:33:37Z 2009-12-08T20:33:37Z <p><a href="http://www.gimpel.com/" rel="nofollow">PC-Lint</a> will report unused include files.</p> http://stackoverflow.com/questions/1852556/casting-a-pointer-to-a-sub-class-c/1852583#1852583 0 Answer by Steve Fallows for Casting a pointer to a sub-class (C++) Steve Fallows 2009-12-05T16:10:41Z 2009-12-05T16:10:41Z <p>You haven't given much code to go on, but I think your first line should be:</p> <pre><code>ThreeDCubePlayer* cubePlayer = (ThreeDCubePlayer *) m_ppDisplayableObjects[0]); </code></pre> <p>We'd need to see the declaration of GetMapX() to know about the second line.</p> http://stackoverflow.com/questions/446866/boostmultiarray-performance-question 7 Boost::multi_array performance question Steve Fallows 2009-01-15T14:12:05Z 2009-12-01T15:20:10Z <p>I am trying to compare the performance of boost::multi_array to native dynamically allocated arrays, with the following test program:</p> <pre><code>#include &lt;windows.h&gt; #define _SCL_SECURE_NO_WARNINGS #define BOOST_DISABLE_ASSERTS #include &lt;boost/multi_array.hpp&gt; int main(int argc, char* argv[]) { const int X_SIZE = 200; const int Y_SIZE = 200; const int ITERATIONS = 500; unsigned int startTime = 0; unsigned int endTime = 0; // Create the boost array typedef boost::multi_array&lt;double, 2&gt; ImageArrayType; ImageArrayType boostMatrix(boost::extents[X_SIZE][Y_SIZE]); // Create the native array double *nativeMatrix = new double [X_SIZE * Y_SIZE]; //------------------Measure boost---------------------------------------------- startTime = ::GetTickCount(); for (int i = 0; i &lt; ITERATIONS; ++i) { for (int y = 0; y &lt; Y_SIZE; ++y) { for (int x = 0; x &lt; X_SIZE; ++x) { boostMatrix[x][y] = 2.345; } } } endTime = ::GetTickCount(); printf("[Boost] Elapsed time: %6.3f seconds\n", (endTime - startTime) / 1000.0); //------------------Measure native----------------------------------------------- startTime = ::GetTickCount(); for (int i = 0; i &lt; ITERATIONS; ++i) { for (int y = 0; y &lt; Y_SIZE; ++y) { for (int x = 0; x &lt; X_SIZE; ++x) { nativeMatrix[x + (y * X_SIZE)] = 2.345; } } } endTime = ::GetTickCount(); printf("[Native]Elapsed time: %6.3f seconds\n", (endTime - startTime) / 1000.0); return 0; } </code></pre> <p>I get the following results:</p> <pre><code>[Boost] Elapsed time: 12.500 seconds [Native]Elapsed time: 0.062 seconds </code></pre> <p>I can't believe multi_arrays are that much slower. Can anyone spot what I am doing wrong?</p> <p>I assume caching is not an issue since I am doing writes to memory.</p> <p>EDIT: This was a debug build. Per Laserallan's suggest I did a release build:</p> <pre><code>[Boost] Elapsed time: 0.266 seconds [Native]Elapsed time: 0.016 seconds </code></pre> <p>Much closer. But 16 to 1 still seems to high to me.</p> <p>Well, no definitive answer, but I'm going to move on and leave my real code with native arrays for now.</p> <p>Accepting Laserallan's answer because it was the biggest flaw in my test.</p> <p>Thanks to all.</p> http://stackoverflow.com/questions/1698428/modify-dll-exports-symbol-table-i-want-to-obfuscate-the-function-names/1698699#1698699 1 Answer by Steve Fallows for Modify dll exports (symbol table). I want to obfuscate the function names. Steve Fallows 2009-11-09T01:38:37Z 2009-11-09T01:38:37Z <p>You might look at <a href="http://www.heaventools.com/overview.htm" rel="nofollow">PE Explorer</a>. I'm not sure it will do what you want, but maybe.</p> http://stackoverflow.com/questions/1665310/where-is-rvalue-stored-in-c/1665322#1665322 1 Answer by Steve Fallows for where is rvalue stored in c? Steve Fallows 2009-11-03T04:53:30Z 2009-11-03T04:53:30Z <p>This is compiler dependent. Usually the value (12) will be calculated by the compiler. It is then stored in the code, typically as part of a load/move immediate assembly instruction.</p> http://stackoverflow.com/questions/1619831/returning-a-pointer-of-a-class-through-its-own-functions/1619929#1619929 4 Answer by Steve Fallows for returning a pointer of a class through it's own functions Steve Fallows 2009-10-25T03:34:00Z 2009-10-25T03:34:00Z <p>Another example is the <a href="http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.18" rel="nofollow">Named Parameter Idiom</a>.</p> http://stackoverflow.com/questions/1441899/cross-compiling-unit-tests-with-cppunit-or-similar/1441975#1441975 0 Answer by Steve Fallows for Cross compiling unit tests with CppUnit or similar Steve Fallows 2009-09-18T00:07:45Z 2009-09-18T00:07:45Z <p>You might want to look at <a href="http://cxxtest.com" rel="nofollow">CxxTest</a>. I have not used it for cross compilation, but it is based entirely on headers and a Python script - no compiled library. It might be easier to adapt than others.</p> http://stackoverflow.com/questions/1421668/c-tutorial-for-experienced-c-programmer/1421696#1421696 4 Answer by Steve Fallows for C++ tutorial for experienced C programmer. Steve Fallows 2009-09-14T13:55:39Z 2009-09-14T13:55:39Z <p>I found <a href="http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html" rel="nofollow">Thinking in C++</a> very good when I was going from C to C++.</p> http://stackoverflow.com/questions/1373686/unable-to-catch-c-exception-using-catch/1373773#1373773 6 Answer by Steve Fallows for Unable to catch c++ exception using catch (...) Steve Fallows 2009-09-03T14:33:09Z 2009-09-03T14:33:09Z <p>An access violation is not a C++ exception. It's a windows Structured Exception. You'll have to use _set_se_translator() if you want to catch them in catch(...).</p> <p>You should probably google for all reasons catch(...) is evil and make sure you really want to do this.</p> http://stackoverflow.com/questions/1280304/why-is-different-regarding-loss-of-data-on-conversion 4 Why is *= different regarding loss of data on conversion? Steve Fallows 2009-08-14T21:24:52Z 2009-08-15T02:27:09Z <p>I have the following example, compiled in VS2005, warning level 4:</p> <pre><code>int main(int argc, char *argv[]) { short s = 2; short t = 3; t *= s; // warning C4244: '*=' : conversion from 'int' to 'short', possible loss of data t = t * s; } </code></pre> <p>It doesn't seem to me there should be a warning on either line. </p> <p>Does *= create an implicit conversion to int for some reason?</p> <p>EDIT:</p> <p>Seems like the lack of warning on the second line (and in VS2008) are the <em>real</em> questions.</p> <p>Thanks for the answers.</p> http://stackoverflow.com/questions/1048749/what-is-the-difference-between-pointer-and-array-in-the-following-context/1048794#1048794 0 Answer by Steve Fallows for What is the difference between pointer and array in the following context? Steve Fallows 2009-06-26T12:09:52Z 2009-06-26T12:22:34Z <p>There is no difference. They will both crash since you've not allocated any space for pName. :)[EDIT: No longer a crash - question has been edited]</p> <p>The main difference is a stylistic one, frequently influenced by which fits the way the surrounding code is written - mostly array access or mostly pointer access.</p> <p>(EDIT: assuming you really meant &amp;pName[0] as Brian Bondy pointed out.)</p> http://stackoverflow.com/questions/1029192/when-heapcreate-function-is-used-or-in-what-cases-do-you-need-a-number-of-heaps/1029239#1029239 0 Answer by Steve Fallows for When HeapCreate function is used or in what cases do you need a number of heaps? Steve Fallows 2009-06-22T20:29:36Z 2009-06-22T20:29:36Z <p>One use is for fixed size objects. If you need to do a lot of allocation/deallocation of objects that are all the same size (i.e. small message buffers) a private heap avoids fragmentation issues.</p> http://stackoverflow.com/questions/1020020/find-all-references-broken-in-one-solution/1020056#1020056 4 Answer by Steve Fallows for "Find All References" broken in one solution Steve Fallows 2009-06-19T21:17:39Z 2009-06-19T21:17:39Z <p>In the old days (VC6 :) ) this type of problem was often fixed by deleting the .ncb file and letting it be rebuilt automatically. Not sure if this is still true in VS2005/8.</p> http://stackoverflow.com/questions/990906/iphone-error-expected-asm-or-attribute-before-foo/991300#991300 1 Answer by Steve Fallows for iphone error: expected '=', ',', ';', 'asm' or '__attribute__' before ' 'foo' Steve Fallows 2009-06-13T19:09:22Z 2009-06-13T19:09:22Z <p>See if this answer helps: <a href="http://stackoverflow.com/questions/990578/expected-asm-or-attribute-before-crendercontext">http://stackoverflow.com/questions/990578/expected-asm-or-attribute-before-crendercontext</a></p> http://stackoverflow.com/questions/991144/what-exactly-do-pointers-store-c/991176#991176 2 Answer by Steve Fallows for What exactly do pointers store? (C++) Steve Fallows 2009-06-13T17:59:30Z 2009-06-13T17:59:30Z <p>As others have said, a pointer stores a memory address which is "just a number' but that is an abstraction. Depending on processor architecture it may be more than one number, for instance a base and offset that must be added to dereference the pointer. In this case the overhead is slightly higher than if the address is a single number.</p> <p>Yes, there is overhead in accessing an int or a bool via a pointer vs. directly, where the processor can put the variable in a register. Pointers are usually used where the value of the indirection outweighs any overhead, i.e. traversing an array.</p> <p>I've been referring to time overhead. Not sure if OP was more concerned space or time overhead.</p> http://stackoverflow.com/questions/971319/resources-for-cross-platform-c-c-development/971496#971496 4 Answer by Steve Fallows for Resources for cross-platform C/C++ development Steve Fallows 2009-06-09T17:42:03Z 2009-06-09T17:42:03Z <p>Here is one resource that may be of use to you <a href="http://predef.sourceforge.net/index.php" rel="nofollow">Pre-defined C/C++ Compiler Macros</a></p> http://stackoverflow.com/questions/960218/i-need-a-good-website-to-learn-c/960225#960225 6 Answer by Steve Fallows for i need a good website to learn c++ Steve Fallows 2009-06-06T18:08:06Z 2009-06-06T18:08:06Z <p>The text of a good book is online here: <a href="http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html" rel="nofollow">Thinking in C++</a></p> http://stackoverflow.com/questions/873745/why-put-a-class-declaration-and-definition-in-two-separate-files-in-c/873760#873760 0 Answer by Steve Fallows for Why put a class declaration and definition in two separate files in C++? Steve Fallows 2009-05-17T02:17:13Z 2009-05-17T02:17:13Z <p>Because even within your DLL other classes will use your class. Those files must see the class declaration at compile time, by including the .h. They must not see the definition or there will be multiple definitions of the class functions.</p> http://stackoverflow.com/questions/839565/how-to-initialise-a-c-program-using-file-environment-and-or-command-line/839979#839979 4 Answer by Steve Fallows for How to initialise a C program using file, environment and/or command line? Steve Fallows 2009-05-08T14:15:07Z 2009-05-11T13:03:48Z <p>Eric Raymond covers a lot of this in Section 10 of <a href="http://www.faqs.org/docs/artu/" rel="nofollow">The Art of Unix Programming</a> Obviously this is Unix centric, but most of the principles can be applied in any OS.</p> http://stackoverflow.com/questions/835171/how-to-send-files-b-w-two-machines-through-socket-programming/835220#835220 1 Answer by Steve Fallows for How to send files b/w two machines through socket programming? Steve Fallows 2009-05-07T15:06:15Z 2009-05-07T15:06:15Z <p>One possibility is the TransmitFile() function in the windows API. You'll have to traverse the directories to find individual files with your own code.</p> http://stackoverflow.com/questions/830463/whats-the-difference-between-global-variables-and-variables-in-main/830481#830481 3 Answer by Steve Fallows for What's the difference between global variables and variables in main? Steve Fallows 2009-05-06T16:27:15Z 2009-05-06T16:27:15Z <p>Scope. VarInMain can be accessed directly only by code in main. GlobalVar can be accessed directly by code in any function in the file.</p> http://stackoverflow.com/questions/827774/refactoring-of-a-large-c-function/827822#827822 2 Answer by Steve Fallows for Refactoring of a large C++ function Steve Fallows 2009-05-06T02:48:13Z 2009-05-06T02:48:13Z <p>The very first step is to develop a good automated regression test if you do not already have one. Then as you pull out each case to a function you can quickly check that you have not broken anything.</p> http://stackoverflow.com/questions/800368/declaring-a-variable-before-initializing-it-in-c/800416#800416 10 Answer by Steve Fallows for Declaring a variable before initializing it in c++ Steve Fallows 2009-04-29T00:35:50Z 2009-04-29T02:32:16Z <p>I prefer Greg's answer, but you could also do this:</p> <pre><code>char *AnimalType; if( happyDay() ) AnimalType = "puppies"; else AnimalType = "toads"; Animal a(AnimalType); </code></pre> <p>I suggest this because I've worked places where the conditional operator was forbidden. (Sigh!) Also, this can be expanded beyond two alternatives very easily.</p> http://stackoverflow.com/questions/791101/c-writing-longer-method-or-shorter-method/791112#791112 2 Answer by Steve Fallows for C#, Writing longer method or shorter method? Steve Fallows 2009-04-26T16:16:29Z 2009-04-26T16:16:29Z <p>There is no one simple rule about function size. The guideline should be a function should do 'one thing'. That's a little vague but becomes easier with experience. Small functions generally lead to readability. Big ones are occasionally necessary.</p> <p>Worrying about the overhead of method calls is premature optimization.</p> http://stackoverflow.com/questions/691014/how-to-allocate-array-in-base-constructor-with-size-based-on-derived-class/691588#691588 0 Answer by Steve Fallows for How to allocate array in base constructor with size based on derived class? Steve Fallows 2009-03-27T21:46:46Z 2009-03-27T21:46:46Z <p>I would consider using a std::map. It can grow with base and derived both not caring about the number of parameters the other uses. Key/value pairs are likely easier to manage that numeric indexes, though that is clearly application dependent.</p> http://stackoverflow.com/questions/302768/why-does-visual-c-not-hit-a-breakpoint-in-or-step-through-a-specific-function 1 Why does Visual C++ not hit a breakpoint in, or step through a specific function? Steve Fallows 2008-11-19T17:51:19Z 2009-03-16T11:18:30Z <p>I have the following:</p> <pre><code>classA::FuncA() { ... code FuncB(); ... code } classA::FuncB(const char *pText) { SelectObject(m_hDC, GetStockObject ( SYSTEM_FONT)); wglUseFontBitmaps(m_hDC, 0, 255, 1000); glListBase(1000); glCallLists(static_cast&lt;GLsizei&gt;(strlen(pText)), GL_UNSIGNED_BYTE, pText); } </code></pre> <p>I can hit breakpoints anywhere in FuncA. If I try to step into FuncB, it steps over. It will accept a breakpoint in FuncB, but never hits it. I know it is executing FuncB, because I can put a MessagBox() call in FuncB and get the message box.</p> <p>I'm new to VS2005 after a few years away from extensive VC6 usage. The one situation like this I recall from my VC6 days, is if symbol information is not available. However, in this case both functions are in the same file, so the symbol information must be correct. Also in that case I think you couldn't even set the breakpoint.</p> <p>I've tried all the silly voodoo like rebuilding the whole solution.</p> <p>What stupid thing am I overlooking?</p> <p>EDIT: Added code for FuncB in response to comment about it possibly being essentially inline-able. (It's just the exact sample code from MSDN for wglUseFontBitmaps [minus comments here]). I don't see how inlining that would impede stepping through each call.</p> http://stackoverflow.com/questions/622515/was-mel-a-real-programmer/622535#622535 8 Answer by Steve Fallows for Was 'Mel' a 'real programmer' Steve Fallows 2009-03-07T21:22:07Z 2009-03-07T21:22:07Z <p>I'm not sure if Mel was a 'real programmer' or not. But in any case, you have to remember the era. Back then those kind of tricks were essential to getting many programs to work, given the limited resources of the systems then. Maybe he went overboard in the situation in the story, but the skills he had were probably required for lots of other cases.</p> http://stackoverflow.com/questions/548289/what-is-the-type-of-an-enum-whose-values-appear-to-be-strings/548300#548300 6 Answer by Steve Fallows for What is the type of an enum whose values appear to be strings? Steve Fallows 2009-02-14T01:10:47Z 2009-02-14T01:17:45Z <p>The single quotes indicate characters, rather than strings in C. So each of the enums will have a 32 bit value consisting of the character codes for the four characters. Actual value will depend in character encodings, but I am assuming 8 bit characters. Note there is <em>no</em> appended \0.</p> <p>You can use the enums for normal comparison/assignment purposes. As with any enum the underlying type is integer.</p> <p>I've used this technique in embedded systems many times to create 4 character 'names' that were human readable in hex dump/debugger contexts.</p> http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234098#234098 35 Answer by Steve Fallows for What is your best programmer joke? Steve Fallows 2008-10-24T15:49:45Z 2009-02-11T11:43:48Z <p>Q: How many C++ programmers does it take to change a light bulb?</p> <p>A: You’re still thinking procedurally. A properly designed light bulb object would inherit a change method from a generic light bulb class, so all you would have to do is call the light-bulb-change method.</p> http://stackoverflow.com/questions/521518/visual-studio-c-debugger-no-hex-dump/521536#521536 1 Answer by Steve Fallows for Visual Studio C++ Debugger: No hex dump? Steve Fallows 2009-02-06T18:26:28Z 2009-02-06T18:26:28Z <p>Debug | Windows | Memory will let you look at any area of memory you want (subject to process/access limitations). This is in VS2005. Might be slightly different menu structure in other versions.</p> http://stackoverflow.com/questions/1910317/unexpected-result-when-adding-to-pointer/1910357#1910357 Comment by Steve Fallows on unexpected result when adding to pointer Steve Fallows 2009-12-15T21:05:37Z 2009-12-15T21:05:37Z Headaches with 68K??? It was a dream next to the 6809! http://stackoverflow.com/questions/1910317/unexpected-result-when-adding-to-pointer/1910357#1910357 Comment by Steve Fallows on unexpected result when adding to pointer Steve Fallows 2009-12-15T21:04:54Z 2009-12-15T21:04:54Z +1 for the nostalgia factor. I knew the 6809 well, many years ago. Please tell me you're not still using it? :) http://stackoverflow.com/questions/1884229/mapping-enum-values-to-strings-in-c/1884657#1884657 Comment by Steve Fallows on Mapping enum values to strings in C++ Steve Fallows 2009-12-10T23:13:43Z 2009-12-10T23:13:43Z In a previous job we had a fairly thorough system to define all return codes in enums and a Perl script to pull them out and make a compileable file of strings so they could be printed when error occurred. These days I would probably use Python but Perl got the job done. http://stackoverflow.com/questions/1875695/constructor-and-variable-names-in-c-vs-java/1875716#1875716 Comment by Steve Fallows on constructor and variable names in c++ vs java Steve Fallows 2009-12-09T18:15:32Z 2009-12-09T18:15:32Z Leading &quot;_&quot; is reserved by the standard for use by the compiler implementation. Not a valid choice for this use. I usually see trailing &quot;_&quot; used if not leading &quot;m_&quot;. http://stackoverflow.com/questions/1665310/where-is-rvalue-stored-in-c/1665358#1665358 Comment by Steve Fallows on where is rvalue stored in c? Steve Fallows 2009-11-03T13:37:58Z 2009-11-03T13:37:58Z Good example. I was going to say &quot;look at the assembly generated&quot; but I was too lazy to create an example. :) Note also, it can become more complicated if the constant value is larger. Some processors have a limit (e.g. 8 bits or 16 bits) on how large a value can be put directly into an instruction. http://stackoverflow.com/questions/1552170/help-with-error-iso-c-forbids-declaration-of-vector-with-no-type/1552183#1552183 Comment by Steve Fallows on Help with error: ISO C++ forbids declaration of 'vector' with no type Steve Fallows 2009-10-12T01:55:53Z 2009-10-12T01:55:53Z Well then include this option: using std::vector; I prefer it in the .cpp immediately after the include. Saves tying std:: all over the place <i>and</i> documents why the header was included (which is not always as obvious as in the case of vector). http://stackoverflow.com/questions/1533588/im-a-developer-how-do-i-become-a-technical-manager/1533623#1533623 Comment by Steve Fallows on I'm a developer. How do I become a technical manager? Steve Fallows 2009-10-07T19:24:06Z 2009-10-07T19:24:06Z You forgot the part about becoming completely clueless. :) http://stackoverflow.com/questions/1433632/is-there-a-findbugs-and-or-pmd-equivalent-for-c-c/1433682#1433682 Comment by Steve Fallows on Is there a Findbugs and / or PMD equivalent for C/C++? Steve Fallows 2009-09-16T15:25:29Z 2009-09-16T15:25:29Z PC-Lint is fairly easy to integrate at least from the error reporting perspective since you can configure the error message format as required by your IDE to find errors automagically. http://stackoverflow.com/questions/1424261/conditional-operator-cant-resolve-overloaded-member-function-pointers Comment by Steve Fallows on Conditional operator can't resolve overloaded member function pointers Steve Fallows 2009-09-14T22:52:59Z 2009-09-14T22:52:59Z You should indicate what &quot;doesn't work&quot; means. Compiler error? Unexpected runtime behavior? http://stackoverflow.com/questions/1419382/stack-overflow-due-to-heap-allocation-deallocation/1419402#1419402 Comment by Steve Fallows on Stack overflow due to heap allocation/deallocation.. Steve Fallows 2009-09-14T02:08:21Z 2009-09-14T02:08:21Z No, the NULL test is unnecessary. http://stackoverflow.com/questions/1352192/why-dont-more-c-programs-embed-perl Comment by Steve Fallows on Why don't more C programs embed Perl? Steve Fallows 2009-08-29T19:36:19Z 2009-08-29T19:36:19Z Because C programmers are 'real programmers'. They don't need no steenkin' perl. :) http://stackoverflow.com/questions/1288761/uint16-value-appears-to-be-backwards-when-printing/1288780#1288780 Comment by Steve Fallows on UINT16 value appears to be "backwards" when printing. Steve Fallows 2009-08-17T16:35:59Z 2009-08-17T16:35:59Z FWIW, endianness is not an attribute of the OS but of the hardware processor. x86 family processors are all little endian. OTOH right-thinking processors such as old 68K family are big-endian. :) http://stackoverflow.com/questions/1284940/check-if-numbers-have-the-same-sign/1284956#1284956 Comment by Steve Fallows on check if numbers have the same sign Steve Fallows 2009-08-16T18:31:49Z 2009-08-16T18:31:49Z Can you provide a reference for this as a part of the language? I've never heard of it. Is it part of the forthcoming standard? http://stackoverflow.com/questions/1280304/why-is-different-regarding-loss-of-data-on-conversion Comment by Steve Fallows on Why is *= different regarding loss of data on conversion? Steve Fallows 2009-08-15T01:56:32Z 2009-08-15T01:56:32Z The example is a brand new project. Only /W4 was added. http://stackoverflow.com/questions/1245840/can-you-guarantee-destructor-order-when-objects-are-declared-on-a-stack/1245857#1245857 Comment by Steve Fallows on Can you guarantee destructor order when objects are declared on a stack? Steve Fallows 2009-08-07T17:00:58Z 2009-08-07T17:00:58Z The referenced question only discusses order of storage on the stack - not order of destruction.