User Mark Santesson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T09:53:27Z http://stackoverflow.com/feeds/user/4662 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/52357/what-is-the-point-of-clog 4 What is the point of clog? Mark Santesson 2008-09-09T17:08:47Z 2009-10-28T02:32:58Z <p>I've been wondering, what is the point of clog? As near as I can tell, clog is the same as cerr but with buffering so it is more efficient. Usually stderr is the same as stdout, so clog is the same as cout. This seems pretty lame to me, so I figure I must be misunderstanding it. If I have log messages going out to the same place I have error messages going out to (perhaps something in /var/log/messages), then I probably am not writing too much out (so there isn't much lost by using non-buffered cerr). In my experience, I want my log messages up to date (not buffered) so I can help find a crash (so I don't want to be using the buffered clog). Apparently I should always be using cerr.</p> <p>I'd like to be able to redirect clog inside my program. It would be useful to redirect cerr so that when I call a library routine I can control where cerr and clog go to. Can some compilers support this? I just checked DJGPP and stdout is defined as the address of a FILE struct, so it is illegal to do something like "stdout = freopen(...)".</p> <ul> <li>Is it possible to redirect clog, cerr, cout, stdin, stdout, and/or stderr?</li> <li>Is the only difference between clog and cerr the buffering?</li> <li>How should I implement (or find) a more robust logging facility (links please)?</li> </ul> http://stackoverflow.com/questions/405690/in-subversion-can-i-be-a-user-other-than-my-login-name 3 In Subversion can I be a user other than my login name? Mark Santesson 2009-01-01T23:41:25Z 2009-10-23T15:54:53Z <p>I'd like to know how to get Subversion to change the name that my changes appear under.</p> <p>I'm just starting to use Subversion. I'm currently using it to version control code on an XP laptop where I'm always logged in under my wife's name. I'd like the subversion DB to show the changes under my name.</p> <p>Later on I'll replicate the DB so it is accessible to the whole house. My wife uses the office computer where she is always logged in under my name. I'll probably set it up so that it automatically checks in modified documents... preferably under her name.</p> <p>Eventually I'll probably be using it from a linux machine under another username.</p> <p>Is there some way to modify the user environment to change the user name that Subversion calls you? I'd expect something like setting SVN_USERNAME='Mark' which would override however it usually gets the name.</p> <p>Update: It looks like the --username flag that Michael referred to does work to change the name reported by "svn stat", even for local file: repositories. In addition, it is sticky so you don't need to specify it for the next command. I even rebooted and it still used the "--username" value from my previous boot.</p> <p>Thanks to Michael Ratanaphintha who answered my question in two minutes! Thanks also Kamil who raised an important aspect which fortunately turned out to not be a problem. And thanks to all those who answered and contributed.</p> http://stackoverflow.com/questions/106508/what-is-a-smart-pointer-and-when-should-i-use-one/106519#106519 1 Answer by Mark Santesson for What is a smart pointer and when should I use one? Mark Santesson 2008-09-20T00:13:25Z 2009-10-23T02:23:12Z <p>A smart pointer is like a regular (typed) pointer, like "char*", except when the pointer itself goes out of scope then what it points to is deleted as well. You can use it like you would a regular pointer, by using "->", but not if you need an actual pointer to the data. For that, you can use "&amp;*ptr".</p> <p>It is useful for:</p> <ul> <li><p>Objects that must be allocated with new, but that you'd like to have the same lifetime as something on that stack. If the object is assigned to a smart pointer, then they will be deleted when the program exits that function/block.</p></li> <li><p>Data members of classes, so that when the object is deleted all the owned data is deleted as well, without any special code in the destructor (you will need to be sure the destructor is virtual, which is almost always a good thing to do).</p></li> </ul> <p>You may <em>not</em> want to use a smart pointer when:</p> <ul> <li>... the pointer shouldn't actually own the data... i.e., when you are just using the data, but you want it to survive the function where you are referencing it.</li> <li>... the smart pointer isn't itself going to be destroyed at some point. You don't want it to sit in memory that never gets destroyed (such as in an object that is dynamically allocated but won't be explicitly deleted).</li> <li>... two smart pointers might point to the same data. (There are, however, even smarter pointers that will handle that... that is called <a href="http://en.wikipedia.org/wiki/Reference%5Fcounting" rel="nofollow">reference counting</a>.)</li> </ul> <p>See also:</p> <ul> <li><a href="http://en.wikipedia.org/wiki/Garbage%5Fcollection%5F%28computer%5Fscience%29" rel="nofollow">garbage collection</a>.</li> <li><a href="http://stackoverflow.com/questions/94227/smart-pointers-or-who-owns-you-baby">This stack overflow question</a> regarding data ownership</li> </ul> http://stackoverflow.com/questions/1610947/why-does-stdlib-hs-abs-family-of-functions-return-a-signed-value/1610957#1610957 0 Answer by Mark Santesson for Why does stdlib.h's abs() family of functions return a signed value? Mark Santesson 2009-10-23T01:31:09Z 2009-10-23T01:31:09Z <p>Why would it ever return a value using the unsigned space?</p> <p>Let's consider 8 bit signed and unsigned numbers. If you have -128, the result is undefined... I guess stdlib doesn't want to slow things down that much. If you think you might have a number in that range, then you need to use something else.</p> <p>If you think you might have a value greater than 127 in your signed char, then you are mistaken.</p> <p>Ergo, it is unnecessary for the value to be able to hold a value greater than 127, and keeping it signed loses nothing. If you want to cast it to unsigned, go ahead. Since it just used to be a signed integer, the odds are good that you will be doing signed math again. Personally, I think I'd prefer that the type stay signed, since it is pretty rare that I actually want to be dealing with unsigned and I'm not doing bit operations.</p> <p>But maybe someone else can dig up some notes from the standards committee.</p> http://stackoverflow.com/questions/1247812/im-stuck-in-trying-to-grep-anything-just-after-name/1247824#1247824 3 Answer by Mark Santesson for I’m stuck in trying to grep anything just after `name=` Mark Santesson 2009-08-08T02:52:31Z 2009-08-08T03:07:11Z <p>As detailed <a href="http://www.regular-expressions.info/lookaround.html" rel="nofollow">here</a>, you want a positive lookbehind clause, such as:</p> <pre><code>grep -P '(?&lt;=name=)[ A-Za-z0-9]*' filename </code></pre> <p>The -P makes grep use the Perl dialect, otherwise you'd probably need to escape the parentheses. You can also, as noted elsewhere, append the <code>-o</code> parameter to print out only what is matched. The part in brackets specifies that you want alphanumerics and spaces.</p> <p>The advantage of using a positive lookbehind clause is that the "name=" text is not part of the match. If grep highlights matched text, it will only highlight the alphanumeric (and spaces) part. The -o parameter will also not display the "name=" part. And, if you transition this to another program like sed that might capture the text and do something with it, you won't be capturing the "name=" part, although you can also do that by using capturing parenthess.</p> http://stackoverflow.com/questions/1230915/static-pointer-to-dynamically-allocated-array/1231156#1231156 0 Answer by Mark Santesson for Static Pointer to Dynamically allocated array. Mark Santesson 2009-08-05T04:12:59Z 2009-08-05T04:27:44Z <p>There are several possibilties with various advantages and disadvantages. I don't know what the table contains, so I'll call it an <code>Entry</code>.</p> <p>If you just want the memory to be sure to go away when the program exits, use a global auto_ptr:</p> <pre><code>auto_ptr&lt;Entry&gt; pTable; </code></pre> <p>You can initialize it whenever you like, and it will automatically be deleted when the program exits. Unfortunately, it will pollute the global namespace. <P> It sounds like you are using the same table within multiple instances of the <em>same class</em>. In this case, it is usual to make it a static pointer of that class:</p> <pre><code>class MyClass { ... protected: static auto_ptr&lt;Entry&gt; pTable; }; </code></pre> <p>If you want it to be accessible in instances of <em>different classes</em>, then you might make it a static member of a function, these will also be deleted when the program exits, but the really nice thing is that it won't be initialized until the function is entered. I.e., the resource won't need to be allocated if the function is never called upon:</p> <pre><code>Entry* getTable() { static auto_ptr&lt;Entry&gt; pTable = new Entry[ gNumEntries ]; return pTable; } </code></pre> <p>You can do any of these with <code>std::vector&lt;Entry&gt;</code> rather than <code>auto_ptr&lt;Entry&gt;</code>, if you prefer, but the main advantage of that is that it can more easily be dynamically resized. That might not be something you value.</p> http://stackoverflow.com/questions/1147455/is-there-a-tool-that-enables-me-to-insert-one-line-of-code-into-all-functions-and/1149063#1149063 4 Answer by Mark Santesson for Is there a tool that enables me to insert one line of code into all functions and methods in a C++-source file? Mark Santesson 2009-07-19T01:56:19Z 2009-07-19T02:22:39Z <p>I would suggest using the gcc flag <a href="http://gcc.gnu.org/onlinedocs/gcc-4.4.0/gcc/Code-Gen-Options.html#index-finstrument%5F002dfunctions-1976" rel="nofollow">"-finstrument-functions"</a>. Basically, it automatically calls a specific function ("<code>__cyg_profile_func_enter</code>") upon entry to each function, and another function is called ("<code>__cyg_profile_func_exit</code>") upon exit of the function. Each function is passed a pointer to the function being entered/exited, and the function which called that one.</p> <p>You can turn instrumenting off on a per-function or per-file basis... see the docs for details.</p> <p>The feature goes back at least as far as version 3.0.4 (from February 2002).</p> <p>This is intended to support profiling, but it does not appear to have side effects like -pg does (which compiles code suitable for profiling).</p> <p>This could work quite well for your problem (tracing execution of a large program), but, unfortunately, it isn't as general purpose as it would have been if you could specify a macro. On the plus side, you don't need to worry about remembering to add your new code into the beginning of all new functions that are written.</p> http://stackoverflow.com/questions/1080652/how-to-check-the-length-of-an-input-c/1080700#1080700 0 Answer by Mark Santesson for How to check the length of an input? (C++) Mark Santesson 2009-07-03T20:13:41Z 2009-07-03T20:19:59Z <p>You can check the length of your NULL terminated string that getline returns by using:</p> <pre><code>int len = strlen(lvlinput); </code></pre> <p>This works because <a href="http://www.cplusplus.com/reference/iostream/istream/getline/" rel="nofollow">getline</a> returns a NULL-terminated string.</p> <p>However, this is besides the point to your problem. If you want to stay away from std::string (and there isn't any particular reason why you should in this case), then you should just convert the string to an integer, and use the integer to construct the command that goes to the system file:</p> <pre><code>char lvlinput[4]; std::cincin.getline(lvlinput, 4); char param_str[20]; snprintf(param_str, 20, "levelplayer.exe %03d", atoi(lvlinput)); system(param_str); </code></pre> http://stackoverflow.com/questions/1054802/c-program-to-search-n-th-smallest-element-in-array-without-sorting/1054951#1054951 6 Answer by Mark Santesson for C Program to search n-th smallest element in array without sorting? Mark Santesson 2009-06-28T13:38:41Z 2009-07-03T14:59:48Z <p>What you are referring to is the Selection Algorithm, as previously noted. Specifically, your reference to quicksort suggests you are thinking of the <a href="http://en.wikipedia.org/wiki/Selection%5Falgorithm#Partition-based%5Fgeneral%5Fselection%5Falgorithm" rel="nofollow">partition based selection</a>.</p> <p>Here's how it works:</p> <ul> <li>Like in Quicksort, you start by picking a good pivot: something that you think is nearly half-way through your list. Then you go through your entire list of items swapping things back and forth until all the items less than your pivot are in the beginning of the list, and all things greater than your pivot are at the end. Your pivot goes into the leftover spot in the middle.</li> <li>Normally in a quicksort you'd recurse on both sides of the pivot, but for the Selection Algorithm you'll only recurse on the side that contains the index you are interested in. So, if you want to find the 3rd lowest value, recurse on whichever side contains index 2 (because index 0 is the 1st lowest value). </li> <li>You can stop recursing when you've narrowed the region to just the one index. At the end, you'll have one unsorted list of the "m-1" smallest objects, and another unsorted list of the "n-m" largest objects. The "m"th object will be inbetween.</li> </ul> <p>This algorithm is also good for finding a sorted list of the highest m elements... just select the m'th largest element, and sort the list above it. Or, for an algorithm that is a little bit faster, do the Quicksort algorithm, but decline to recurse into regions not overlapping the region for which you want to find the sorted values.</p> <p>The really neat thing about this is that it normally runs in O(n) time. The first time through, it sees the entire list. On the first recursion, it sees about half, then one quarter, etc. So, it looks at about 2n elements, therefore it runs in O(n) time. Unfortunately, as in quicksort, if you consistently pick a bad pivot, you'll be running in O(n<sup>2</sup>) time.</p> http://stackoverflow.com/questions/1022167/advice-on-how-to-approach-the-art-of-computer-programming/1022241#1022241 28 Answer by Mark Santesson for Advice on how to approach The Art of Computer Programming? Mark Santesson 2009-06-20T18:56:12Z 2009-06-21T15:38:13Z <p>I think you have to be careful with Knuth. He gives a "Procedure for Reading This Set of Books" on page xiii, where he recommends at least scanning the first two chapters. Sections marked "*" can be omitted. Unless you are "mathematically inclined" (I'd say a graduate Math student) then you can skip the derivations.</p> <p>I'd be very careful about recommending these books to anyone, I'm only on page 260 of Volume 1, but I'm too stubborn to skip anything even though I'm not "mathematically inclined". It isn't that they aren't good, they are near perfect. But it is slow going and not as immediately rewarding as reading a "light" book on algorithms that explains things in easier language. To see what I mean, compare the descriptions of the heap sort algorithm in Volume 3 (page 145, section 5.2.3) versus <a href="http://en.wikipedia.org/wiki/Heapsort" rel="nofollow">wikipedia's version</a>. These books demand the right kind of student.</p> <p>However, the answers are so canonical that if someone is ready for them, then there is nothing else like Knuth. And the books remain suprisingly relevant despite their age. A couple years ago I consulted the algorithms on how to sort on tape drives, as I was having to do sort data that did not fit in memory, and so I had to do the sort using the two disk drives that were available. There is also a new Volume 4, broken up into Fascicles, that might be more relevant to modern algorithms.</p> <p>Knuth is as close to a perfect, abstract truth as computer science gets. Rather like how "1+1=2" is true regardless of which planet you are on, the material in TAOCP is true regardless of the platform that you may be dealing with even if in some cases it may not be terribly relevant... at least not directly relevant. See the section on sorting with multiple tape drives.</p> <p>If you are interested in it for what it can teach you about your problem today, then you probably want to consult something else. Reading Knuth is a deep dive into algorithms; it is not a quick fix for what ails you.</p> <p>Another answer's comment might be taken to suggest that Knuth is not useful. Heresy! Here's my list of times I've used it.. admittedly not a long list, but I'm young yet:</p> <ul> <li>1.2.11.1 The O notation: Hopefully you already know this before you read Knuth.</li> <li>1.4.2 Coroutines: What Python means by the "yield" statement.</li> <li>5.3 Optimum Sorting: Which sort algorithm as a function of what your bottleneck is.</li> <li>5.4 External Sorting: for when you don't have enough memory to store your set in memory, but you still need it sorted fast.</li> </ul> <p>One final note: be sure you don't skip the exercises: that is were a lot of the material lies.</p> http://stackoverflow.com/questions/404430/what-have-you-used-regular-expressions-for/404558#404558 2 Answer by Mark Santesson for What have you used Regular Expressions for? Mark Santesson 2009-01-01T05:11:47Z 2009-06-21T03:41:25Z <p>I use them quite frequently, probably because I'm mostly in a linux environment and have easy access to them.</p> <ul> <li>Searching for things in an editor, especially when I know two parts on a line but not what is inbetween (please excuse the extraneous whitespace) <ul> <li>Where is the reval function that takes a widget? "<code>reval.*\&lt;widget\&lt;</code>"</li> <li>Where is my_obj assigned to? "<code>\&lt;my_obj\&gt;.*=</code>"</li> </ul></li> <li>To search and replace in order to produce a modification of a data file: i.e., set all the delivery volumes to one "<code>#&lt;volume&gt;[-0-9.]+&lt;/volume&gt;#&lt;volume&gt;1.0&lt;/volume&gt;</code>#g"</li> <li>To munge output to fit on the screen (removing whitespace or uninteresting fields).</li> <li>To munge data files into another format, such as taking log files and producing a file for gnuplot which graphs performance data.</li> <li>For programmatic uses, such as pattern matching a data value's name in order to handle it differently if it matches certain criteria most easily expressed with a regular expression.</li> </ul> <p>After using regexes I hate the windows "Find" box because it is so limited.</p> <p>As another user answered, regular expressions are essentially more powerful globbing, but they go way beyond that. You don't need to read <a href="http://oreilly.com/catalog/9781565922570/" rel="nofollow">"Master Regular Expressions"</a> to use them, but I do recommend the book. I'm sure there are plenty of resources on the internet, such as <a href="http://www.regular-expressions.info/" rel="nofollow">here</a>, although I can't vouch for any of them.</p> <p>Another advantage to using regular expressions (whether in code or on the command line) is that they have been heavily optimized. Grep and <a href="http://en.wikipedia.org/wiki/21st%5FCentury%5FCompilers" rel="nofollow">DFA parsers</a> in particular are almost certainly faster than what you would write on your own... and more likely to be correct the first time. Don't reinvent the wheel when you have such a nice one handy.</p> http://stackoverflow.com/questions/406315/c-accessing-the-heap/409093#409093 0 Answer by Mark Santesson for C++ Accessing the Heap Mark Santesson 2009-01-03T14:28:46Z 2009-06-21T03:32:09Z <p>Why do you want it on the heap? If you add it as part of the class then it will be in the same place the class is, possibly on the stack or in global memory. Perhaps you want to have a variable size to your integer pointer? In that case, then you need to be sure to deallocate the memory when you are done with it.</p> <p>The problem with stuff on the heap is finding it. There is no accessing it by name, unless you add a mechanism for that. Somehow you need to communicate the location to whatever code needs to access it. In this case, it looks like you only need access within the Grid class, so it is easy. Just make it a member variable like Aaron indicates. You might end up with something like:</p> <pre><code>class Grid { protected: int* pVals; public: Grid() pVals(NULL) { } ~Grid() { delete [] pVals; } void HeapValues() { pVals = new int[getHeapValuesSize()]; pVals[0] = 1; // ... } void AccessHeap() { cout &lt;&lt; pVals[0]; // ... } </code></pre> <p>(On a side note, you appear to be using the phrase "data member function" when you mean "member function". "Data member" refers to member data of a class, like pVals, but I'm not sure what "data member function" would mean.)</p> http://stackoverflow.com/questions/110868/never-produce-to-an-unknown-pathway-in-software-too-toyota-principle/110967#110967 5 Answer by Mark Santesson for Never produce to an unknown pathway, in software too? [Toyota principle] Mark Santesson 2008-09-21T12:57:24Z 2009-06-20T18:20:48Z <p>A good idea where practicable. Unfortunately, it is usually prohibitively difficult to keep track of the entire history of the state of the machine. You just can't tag each data structure with where you got it from, and the entire state of <em>that</em> object. You might be able to store just the external events and in that way reproduce where everything came from.</p> <p>Some examples:</p> <p>I did work on a project where it was practicable and it helped immensely. When we were getting close to shipping, and running out of bugs to fix, we would have our game play in "zero players mode", where the computer would repeatedly play itself all night long with all variations of characters and locales. If it asserted, it would display the random key that started the match. When we came to work in the morning we'd write the key down from our screen (there usually was one) and start it again using that key. Then we'd just watch it until the assert came up, and track it down. The important thing is that we could recreate all the original inputs that led to the error, and rerun it as many times as we wanted, even after recompiles (within limits... the number of fetches from the random number generator could not be changed, although we had a separate RNG for non-game stuff like visual fx). This only worked because each match started after a warm reboot and took only a very small amount of data as input. </p> <p>I have heard that Bungie used a similar method to try to discover bad geometry in their Halo levels. They would set the dev kits running overnight in a special mode where the indestructable protagonist would move and jump randomly. In the morning they'd look and see if he got stuck in the geometry at some location where he couldn't get out. There may have been grenades involved, too.</p> <p>On another project we actually logged all user interaction with a timestamp so we could replay it. That works great if you can, but most people have interactions with a changing DB whose entire state might not be stored so easily.</p> http://stackoverflow.com/questions/408670/stack-static-and-heap-in-c/409072#409072 13 Answer by Mark Santesson for Stack,Static and Heap in C++ Mark Santesson 2009-01-03T14:08:09Z 2009-02-16T18:35:39Z <p><a href="http://stackoverflow.com/questions/79923/what-and-where-are-the-stack-and-heap">A similar question</a> was asked, but it didn't ask about statics.</p> <h2>Summary of what static, heap, and stack memory are:</h2> <ul> <li><p>A static variable is basically a global variable, even if you cannot access it globally. Usually there is an address for it that is in the executable itself. There is only one copy for the entire program. No matter how many times you go into a function call (or class) (and in how many threads!) the variable is referring to the same memory location.</p></li> <li><p>The heap is a bunch of memory that can be used dynamically. If you want 4kb for an object then the dynamic allocator will look through its list of free space in the heap, pick out a 4kb chunk, and give it to you. Generally, the dynamic memory allocator (malloc, new, et c.) starts at the end of memory and works backwards.</p></li> <li><p>Explaining how a stack grows and shrinks is a bit outside the scope of this answer, but suffice to say you always add and remove from the end only. Stacks usually start high and grow down to lower addresses. You run out of memory when the stack meets the dynamic allocator somewhere in the middle (but refer to physical versus virtual memory and fragmentation). Multiple threads will require multiple stacks (the process generally reserves a minimum size for the stack).</p></li> </ul> <h2>When you would want to use each one:</h2> <ul> <li><p>Statics/globals are useful for memory that you know you will always need and you know that you don't ever want to deallocate. (By the way, embedded environments may be thought of as having only static memory... the stack and heap are part of a known address space shared by a third memory type: the program code. Programs will often do dynamic allocation out of their static memory when they need things like linked lists. But regardless, the static memory itself (the buffer) is not itself "allocated", but rather other objects are allocated out of the memory held by the buffer for this purpose. You can do this in non-embedded as well, and console games will frequently eschew the built in dynamic memory mechanisms in favor of tightly controlling the allocation process by using buffers of preset sizes for all allocations.)</p></li> <li><p>Stack variables are useful for when you know that as long as the function is in scope (on the stack somewhere), you will want the variables to remain. Stacks are nice for variables that you need for the code where they are located, but which isn't needed outside that code. They are also really nice for when you are accessing a resource, like a file, and want the resource to automatically go away when you leave that code.</p></li> <li><p>Heap allocations (dynamically allocated memory) is useful when you want to be more flexible than the above. Frequently, a function gets called to respond to an event (the user clicks the "create box" button). The proper response may require allocating a new object (a new Box object) that should stick around long after the function is exited, so it can't be on the stack. But you don't know how many boxes you would want at the start of the program, so it can't be a static.</p></li> </ul> <h2>Garbage Collection</h2> <p>I've heard a lot lately about how great Garbage Collectors are, so maybe a bit of a dissenting voice would be helpful.</p> <p>Garbage Collection is a wonderful mechanism for when performance is not a huge issue. I hear GCs are getting better and more sophisticated, but the fact is, you may be forced to accept a performance penalty (depending upon use case). And if you're lazy, it still may not work properly. At the best of times, Garbage Collectors realize that your memory goes away when it realizes that there are no more references to it (see <a href="http://en.wikipedia.org/wiki/Reference_counting" rel="nofollow">reference counting</a>). But, if you have an object that refe http://stackoverflow.com/questions/396327/question-on-multiple-inheritance-virtual-base-classes-and-object-size-in-c/396353#396353 12 Answer by Mark Santesson for Question on multiple inheritance, virtual base classes, and object size in C++ Mark Santesson 2008-12-28T16:24:33Z 2009-01-01T17:51:17Z <p>Let's look at the class layout of the two cases.</p> <p>Without the virtual, you have two base classes ("X" and "Y") with an integer each, and each of those classes have integrated into them a "Base" base class which also has an integer. That is 4 integers, 32-bits each, totalling your 16 bytes.</p> <pre><code>Offset Size Type Scope Name 0 4 int Base a 4 4 int X x 8 4 int Base a 12 4 int Y y 16 size (Z members would come at the end) </code></pre> <p>(Edit: I've written a program in DJGPP to get the layout and tweaked the table to account for it.)</p> <p>Now let's talk about virtual base classes: they replace the actual instance of the class with a pointer to a shared instance. Your "Z" class has only one "Base" class, and both instances of "X" and "Y" point to it. Therefore, you have integers in X, Y, and Z, but you only have the one Z. That means you have three integers, or 12 bytes. But X and Y also have a pointer to the shared Z (otherwise they wouldn't know where to find it). On a 32-bit machine two pointers will add an additional 8 bytes. This totals the 20 that you see. The memory layout might look something like this (I haven't verified it... the ARM has an example where the ordering is X, Y, Z, then Base):</p> <pre><code>Offset Size Type Scope Name Value (sort of) 0 4 Base offset X ? 16 (or ptr to vtable) 4 4 int X x 8 4 Base offset Y ? 16 (or ptr to vtable) 12 4 int Y y 16 4 int Base a 20 size (Z members would come before the Base) </code></pre> <p>So the memory difference is a combination of two things: one less integer and two more pointers. Contrary to another answer, I don't believe vtables pay any (edit) direct (/edit) roll in this, since there are no virtual functions.</p> <p>Edit: ppinsider has provided more information on the gcc case, in which he demonstrates that gcc implements the pointer to the virtual base class by making use of an otherwise empty vtable (i.e., no virtual functions). That way, if there were virtual functions, it wouldn't require an additional pointer in the class instance, requiring more memory. I suspect the downside is an additional indirection to get to the base class.</p> <p>We might expect all compilers to do this, but perhaps not. The <a href="http://www.research.att.com/~bs/arm.html" rel="nofollow">ARM</a> page 225 discusses virtual base classes without mentioning vtables. Page 235 specifically addresses "virtual base classes with virtual functions" and has a diagram indicating a memory layout where there are pointers from the X and Y parts that are separate from the pointers to the vtable. I would advise anyone not to take for granted that the pointer to Base will be implemented in terms of a table.</p> http://stackoverflow.com/questions/402316/learning-algorithm-and-saving-data-in-software/402320#402320 3 Answer by Mark Santesson for Learning Algorithm and Saving Data in Software Mark Santesson 2008-12-31T04:45:24Z 2008-12-31T04:52:12Z <p>I think that would depend a bit on the problem domain. You might want to store learned "facts" or "relationships" in a DB so that they can be easily searched. If you are training a neural network, then you'd probably just dump the network state to a file. In general, I think once you have a mechanism that does the learning, the appropriate storage representation will be relatively apparent.</p> <p>Maybe if you can flesh out your plan on what kind of learning you'd like to implement, people can provide more guidance on what the implementation should look like, including the state storage.</p> http://stackoverflow.com/questions/367310/dynamic-memory-allocation-failure-recovery/367408#367408 2 Answer by Mark Santesson for Dynamic Memory Allocation Failure Recovery Mark Santesson 2008-12-15T03:31:16Z 2008-12-20T05:10:36Z <p>There are lots of good things in the other answers, but I did think it worth adding that if all the threads get in a similar loop, then the program will be deadlocked.</p> <p>The "correct" answer to this situation is probably to have strict limits for the different parts of the program to ensure that they don't over consume memory. That would probably require rewriting major sections across all parts of the program.</p> <p>The next best solution would be to have some callback where a failed allocation attempt can tell the rest of the program that more memory is needed. Perhaps other parts of the program can release some buffers more aggressively than they normally would, or release memory used to cache search results, or something. This would require new code for other parts of the program. However, this could be done incrementally, rather than requiring a rewrite across the entire program.</p> <p>Another solution would be to have the program protect large (temporary) memory requests with a mutex. It sounds like you are confident that memory will be released soon if you can just try again later. I suggest that you use a mutex for operations that might consume a lot of memory, this will allow the thread to be woken up immediately when another thread has released the memory that is needed. Otherwise your thread will sleep for a tenth of a second even if the memory frees up immediately.</p> <p>You might also try sleep(0), which will simply hand off control to any other thread that is ready to run. This will allow your thread to regain control immediately if all other threads go to sleep, rather than having to wait out its 100 millisecond sentence. But if at least one thread still wants to run, you will still have to wait until it gives up control. This is typically 10 milliseconds on Linux machines, last I checked. I don't know about other platforms. Your thread may also have a lower priority in the scheduler if it has voluntarily gone to sleep.</p> http://stackoverflow.com/questions/232445/dynamic-arrays/232462#232462 3 Answer by Mark Santesson for Dynamic Arrays Mark Santesson 2008-10-24T04:05:51Z 2008-10-24T04:10:55Z <p>Or, if you don't want to use STL or another dynamic thing, you can just create the array with the correct size from the beginning: x = new double[2];</p> <p>Of course the problem there is how big to make it. If you don't know, then you'll need to just create it "big enough" (like a hundred, or a thousand)... which, at some point, won't be big enough and it will fail in some random looking way. So then you'll need to resize it. And once you get to that point, you'll wish you'd used the STL from the start, like the other answers are telling you to do.</p> <pre><code>#include &lt;iostream&gt; using namespace std; int main() { double *x = new double[2]; x[0]=5; x[1]=6; cout &lt;&lt; x[0] &lt;&lt; "," &lt;&lt; x[1] &lt;&lt; endl; return 0; } </code></pre> http://stackoverflow.com/questions/128853/how-do-i-run-a-command-in-a-loop-until-i-see-some-string-in-stdout/160803#160803 4 Answer by Mark Santesson for How do I run a command in a loop until I see some string in stdout? Mark Santesson 2008-10-02T03:39:29Z 2008-10-03T02:37:02Z <p>I'm suprised I haven't seen a brief perl one-liner mentioned here:</p> <pre><code>perl -e 'do { sleep(1); $_ = `command`; print $_; } until (m/search/);'</code></pre> <p>Perl is a really nice language for stuff like this. Replace "command" with the command you want to repeatedly run. Replace "search" with what you want to search for. If you want to search for something with a slash in it, then replace m/search/ with m#search string with /es#.</p> <p>Also, perl runs on lots of different platforms, including Win32, and this will work wherever you have a perl installation. Just change your command appropriately.</p> http://stackoverflow.com/questions/151418/calling-a-c-function-pointer-on-a-specific-object-instance/151427#151427 1 Answer by Mark Santesson for Calling a C++ function pointer on a specific object instance Mark Santesson 2008-09-30T01:36:47Z 2008-09-30T02:18:03Z <p>Unfortunately, the EventFunction type cannot point to a function of B, because it is not the correct type. You could make it the correct type, but that probably isn't really the solution you want:</p> <p><code>typedef void (*B::EventFunction)(int nEvent);</code></p> <p>... and then everything works once you call the callback with an obhect of B. But you probably want to be able to call functions outside of B, in other classes that do other things. That is sort of the point of a callback. But now this type points to something definitely in B. More attractive solutions are:</p> <ul> <li>Make B a base class, then override a virtual function for each other class that might be called. A then stores a pointer to B instead of a function pointer. Much cleaner.</li> <li>If you don't want to bind the function to a specific class type, even a base class (and I wouldn't blame you), then I suggest you make the function that gets called a static function: "<code>static void EventFrom A(int nEvent);</code>". Then you can call it directly, without an object of B. But you probably want it to call a specific instance of B (unless B is a singleton).</li> <li>So if you want to be able to call a specific instance of B, but be able to call non-B's, too, then you need to pass something else to your callback function so that the callback function can call the right object. Make your function a static, as above, and add a void* parameter which you will make a pointer to B.</li> </ul> <p>In practice you see two solutions to this problem: ad hoc systems where you pass a void* and the event, and hierarchies with virtual functions in a base class, like windowing systems</p> http://stackoverflow.com/questions/48315/c-practice-problems/51134#51134 1 Answer by Mark Santesson for C++ Practice Problems Mark Santesson 2008-09-09T02:29:43Z 2008-09-09T02:29:43Z <p>I always used to write a <a href="http://en.wikipedia.org/wiki/Mandelbrot_fractal" rel="nofollow">Mandelbrot</a> and Julia fractal generator when I first started learning a new platform or framework. Of course, that requires graphics capabilities.</p> <p>For more basic problems you might try <a href="http://projecteuler.net/" rel="nofollow">Project Euler</a> which presents problems as challenges. Most problems can be solved in fifteen minutes or so. (Some much quicker if you have infinite precision languages like Python, but I think that is almost cheating). They are generally problems like:</p> <ul> <li>find the 10,001st prime,</li> <li>Starting in the top left corner in a 20 by 20 grid, how many routes are there to the bottom right corner?,</li> <li>How many Sundays fell on the first of the month during the twentieth century?,</li> <li>calculate the sum of all the primes below two million, or</li> <li>find the first ten digits of the sum of the following 50 digit numbers.</li> </ul> <p>All problems contain any incidental information you may need, such as definitions of prime, abundant number, amicable pair, et c. Many are trivial to code a solution for, but you need to be a little more clever to have the program finish within the lifetime of the sun. There are message boards to discuss the answers, and lots of questions to go through.</p> http://stackoverflow.com/questions/1610947/why-does-stdlib-hs-abs-family-of-functions-return-a-signed-value/1610957#1610957 Comment by Mark Santesson on Why does stdlib.h's abs() family of functions return a signed value? Mark Santesson 2009-10-23T21:57:06Z 2009-10-23T21:57:06Z My point is, your only downside is if you are at INT_MIN, and that would be really rare. My sentence beginning with &quot;Personally,&quot; hints at the &quot;type&quot; explanation provided by caf. The main thrust of my answer was to try to convince people that they hadn't lost much. http://stackoverflow.com/questions/1247812/im-stuck-in-trying-to-grep-anything-just-after-name/1247828#1247828 Comment by Mark Santesson on I’m stuck in trying to grep anything just after `name=` Mark Santesson 2009-08-08T03:05:56Z 2009-08-08T03:05:56Z Most likely a very suitable solution, but the asker asked about grep... and it doesn't match only spaces and alphanumerics. http://stackoverflow.com/questions/1247812/im-stuck-in-trying-to-grep-anything-just-after-name/1247824#1247824 Comment by Mark Santesson on I’m stuck in trying to grep anything just after `name=` Mark Santesson 2009-08-08T03:03:42Z 2009-08-08T03:03:42Z I was worried about that, too, so I tried it on my Windows PC, and that is why I had to use the -P parameter. It probably supports it in the other flavors (maybe not -G), but I didn't know the proper escaping for the elements. I'm using grep 2.5.1. http://stackoverflow.com/questions/1203765/how-to-dump-the-symbols-in-a-a-file/1203772#1203772 Comment by Mark Santesson on How to dump the symbols in a .a file Mark Santesson 2009-07-30T03:31:11Z 2009-07-30T03:31:11Z A similarly useful program is &quot;strings&quot;, which prints everything in a binary that looks like a null terminated string. http://stackoverflow.com/questions/1113919/where-can-i-learn-the-basics-of-game-physics-and-the-math-behind-it/1113955#1113955 Comment by Mark Santesson on Where can I learn the basics of game physics and the math behind it? Mark Santesson 2009-07-11T16:05:50Z 2009-07-11T16:05:50Z I'd recommend Eberly's &quot;3D Game Engine Design&quot;. That focusses a bit more on the collision detection rather than restitution, though. http://stackoverflow.com/questions/1113919/where-can-i-learn-the-basics-of-game-physics-and-the-math-behind-it/1113945#1113945 Comment by Mark Santesson on Where can I learn the basics of game physics and the math behind it? Mark Santesson 2009-07-11T16:04:10Z 2009-07-11T16:04:10Z I found my statics and dynamics textbooks very useful when programming a physics engine. Conservation of momentum (linear and angular) and conservation of energy are the basic equations that will produce the whole system. http://stackoverflow.com/questions/1080652/how-to-check-the-length-of-an-input-c Comment by Mark Santesson on How to check the length of an input? (C++) Mark Santesson 2009-07-04T16:23:51Z 2009-07-04T16:23:51Z <a href="http://linux.die.net/man/3/snprintf" rel="nofollow">linux.die.net/man/3/snprintf</a> http://stackoverflow.com/questions/1080652/how-to-check-the-length-of-an-input-c Comment by Mark Santesson on How to check the length of an input? (C++) Mark Santesson 2009-07-03T20:04:57Z 2009-07-03T20:04:57Z Why can't you check the len of the string? &quot;len=strlen(lvlinput);&quot; You probably want to do something like: snprintf(param_str, 20, &quot;levelplayer.exe %03d&quot;, atoi(lvlinput);&quot; http://stackoverflow.com/questions/1022167/advice-on-how-to-approach-the-art-of-computer-programming/1022241#1022241 Comment by Mark Santesson on Advice on how to approach The Art of Computer Programming? Mark Santesson 2009-06-20T19:21:45Z 2009-06-20T19:21:45Z @Neil - I agree entirely. Too much math for my taste, but that is what makes it so perfect. Math is the universal truth, and Knuth is as close as programming gets to it. Aw, let's face it: if you're trying to get your qsort to work, understanding the universal truths behind algorithm Q is probably not going to get you there. http://stackoverflow.com/questions/984846/find-replace-part-of-text/984858#984858 Comment by Mark Santesson on find & replace part of text Mark Santesson 2009-06-12T04:54:54Z 2009-06-12T04:54:54Z What about &quot;perl -ple 's/search regex/replace string/&quot;? Grep has absolutely no replace functionality, only searching. Sed is the usual answer. http://stackoverflow.com/questions/984925/what-is-a-data-structure-that-has-o1-for-append-prepend-and-retrieve-element/984955#984955 Comment by Mark Santesson on What is a data structure that has O(1) for append, prepend, and retrieve element at any location? Mark Santesson 2009-06-12T04:47:20Z 2009-06-12T04:47:20Z It should be noted that adding to a deque is only amortized O(1) time... any individual add operation can be O(n) if a resize is necessary. http://stackoverflow.com/questions/408670/stack-static-and-heap-in-c/409072#409072 Comment by Mark Santesson on Stack,Static and Heap in C++ Mark Santesson 2009-02-16T18:30:37Z 2009-02-16T18:30:37Z @gs: Interesting point. Of course, you could lazily deallocate with non-GC, so it comes down, again, to ease of use versus the ability to micromanage. If the ease of use lets you have time to optimize elsewhere, then it was a good perofrmance gain. I'll tweak. http://stackoverflow.com/questions/408670/stack-static-and-heap-in-c/409072#409072 Comment by Mark Santesson on Stack,Static and Heap in C++ Mark Santesson 2009-01-06T03:20:05Z 2009-01-06T03:20:05Z @ litb: I think the other question is certainly worth referring to, but not a duplicate. Do you agree? Can you explain to me more about having a dynamic object in static memory? Are you referring to an overloaded new using a static buffer? If so, then true, but the buffer is not dynamic. I'll tweak. http://stackoverflow.com/questions/408670/stack-static-and-heap-in-c/409072#409072 Comment by Mark Santesson on Stack,Static and Heap in C++ Mark Santesson 2009-01-06T03:15:09Z 2009-01-06T03:15:09Z @P Daddy - I'll fix the growing direction, thanks... I thought I might have had it backwards, but didn't bother to look it up. Re meeting in middle, I'm being simplistic. I didn't want to explain physical vs. virtual mem. Re GC, I said it was &quot;wonderful&quot; and that python would be &quot;horrible&quot; withoutit http://stackoverflow.com/questions/409827/boosttuples-vs-structs-for-return-values Comment by Mark Santesson on Boost::Tuples vs Structs for return values Mark Santesson 2009-01-03T23:31:36Z 2009-01-03T23:31:36Z Good question... from the answers it seems like the only reason to use tuples is laziness... not that laziness doesn't have its place occasionally, but I wouldn't want to do it in production code.