User Steve Jessop - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T08:05:22Z http://stackoverflow.com/feeds/user/13005 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1931359/how-to-reduce-calculation-of-average-to-sub-sets-in-a-general-way/1931514#1931514 0 Answer by Steve Jessop for How to reduce calculation of average to sub-sets in a general way? Steve Jessop 2009-12-19T00:43:55Z 2009-12-19T00:49:17Z <p>&nbsp;</p> <pre><code>Average of x_1 .. x_N = (Sum(i=1,N,x_i)) / N = (Sum(i=1,M,x_i) + Sum(i=M+1,N,x_i)) / N = (Sum(i=1,M,x_i)) / N + (Sum(i=M+1,N,x_i)) / N </code></pre> <p>This can be repeatedly applied, and is true regardless of whether the summations are of equal size. So:</p> <ul> <li>Keep adding terms until both:</li> <li><ul> <li>adding another one will overflow (or otherwise lose precision)</li> </ul></li> <li><ul> <li>dividing by N will not underflow</li> </ul></li> <li>Divide the sum by N</li> <li>Add the result to the average-so-far</li> </ul> <p>There's one obvious awkward case, which is that there are some very small terms at the end of the sequence, such that you run out of values before you satisfy the condition "dividing by N will not underflow". In which case just discard those values - if their contribution to the average cannot be represented in your floating type, then it is in particular smaller than the precision of your average. So it doesn't make any difference to the result whether you include those terms or not.</p> <p>There are also some less obvious awkward cases to do with loss of precision on individual summations. For example, what's the average of the values:</p> <pre><code>10^100, 1, -10^100 </code></pre> <p>Mathematics says it's 1, but floating-point arithmetic says it depends what order you add up the terms, and in 4 of the 6 possibilities it's 0, because (10^100) + 1 = 10^100. But I think that the non-commutativity of floating-point arithmetic is a different and more general problem than this question. If sorting the input is out of the question, I think there are things you can do where you maintain lots of accumulators of different magnitudes, and add each new value to whichever one of them will give best precision. But I don't really know.</p> http://stackoverflow.com/questions/1929209/when-overriding-a-virtual-member-function-why-does-the-overriding-function-alway/1929408#1929408 5 Answer by Steve Jessop for When overriding a virtual member function, why does the overriding function always become virtual? Steve Jessop 2009-12-18T16:47:04Z 2009-12-18T17:50:41Z <p>The standard does leave an opening to call B::foo directly and avoid a table lookup:</p> <pre><code>#include &lt;iostream&gt; class A { public: virtual void foo() = 0; }; class B : public A { public: void foo() { std::cout &lt;&lt;"B::foo\n"; } }; class C : public B { public: void foo() { std::cout &lt;&lt;"C::foo\n"; } }; int main() { C c; A *ap = &amp;c; // virtual call to foo ap-&gt;foo(); // virtual call to foo static_cast&lt;B*&gt;(ap)-&gt;foo(); // non-virtual call to B::foo static_cast&lt;B*&gt;(ap)-&gt;B::foo(); } </code></pre> <p>Output:</p> <pre><code>C::foo C::foo B::foo </code></pre> <p>So you can get the behaviour you say you expect as follows:</p> <pre><code>class A { virtual void foo() = 0; // makes a virtual call to foo public: void bar() { foo(); } }; class B : public A { void foo() { std::cout &lt;&lt;"B::foo\n"; } // makes a non-virtual call to B::foo public: void bar() { B::foo(); } }; </code></pre> <p>Now callers should use bar instead of foo. If they have a C*, then they can cast it to A*, in which case <code>bar</code> will call <code>C::foo</code>, or they can cast it to B*, in which case <code>bar</code> will call <code>B::foo</code>. C can override bar again if it wants, or else not bother, in which case calling <code>bar()</code> on a C* calls <code>B::foo()</code> as you'd expect.</p> <p>I don't know when anyone would want this behaviour, though. The whole point of virtual functions is to call the same function for a given object, no matter what base or derived class pointer you're using. C++ therefore assumes that if calls to a particular member function through a base class are virtual, then calls through derived classes should also be virtual.</p> http://stackoverflow.com/questions/1919608/checking-for-null-before-pointer-usage/1921403#1921403 2 Answer by Steve Jessop for Checking for null before pointer usage Steve Jessop 2009-12-17T12:23:46Z 2009-12-17T15:25:49Z <p>Don't make it a rule to just check for null and do nothing if you find it.</p> <p>If the pointer is allowed to be null, then you have to think about what your code does in the case that it actually is null. Usually, just doing nothing is the wrong answer. With care it's possible to define APIs which work like that, but this requires more than just scattering a few NULL checks about the place.</p> <p>So, if the pointer is allowed to be null, then you must check for null, and you must do whatever is appropriate.</p> <p>If the pointer is not allowed be null, then it's perfectly reasonable to write code which invokes undefined behaviour if it is null. It's no different from writing string-handling routines which invoke undefined behaviour if the input is not NUL-terminated, or writing buffer-using routines which invoke undefined behaviour if the caller passes in the wrong value for the length, or writing a function that takes a <code>file*</code> parameter, and invokes undefined behaviour if the user passes in a file descriptor reinterpret_cast to <code>file*</code>. In C and C++, you simply have to be able to rely on what your caller tells you. Garbage in, garbage out.</p> <p>However, you might like to write code which helps out your caller (who is probably you, after all) when the most likely kinds of garbage are passed in. Asserts and exceptions are good for this.</p> <p>Taking up the analogy from Franci's comment on the question: most people do not look for cars when crossing a footpath, or before sitting down on their sofa. They could still be hit by a car. It happens. But it would generally be considered paranoid to spend any effort checking for cars in those circumstances, or for the instructions on a can of soup to say "first, check for cars in your kitchen. Then, heat the soup".</p> <p>The same goes for your code. It's much easier to pass an invalid value to a function than it is to accidentally drive your car into someone's kitchen. But it's still the fault of the driver if they do so and hit someone, not a failure of the cook to exercise due care. You don't necessarily want cooks (or callees) to clutter up their recipes (code) with checks that ought to be redundant.</p> <p>There are other ways to find problems, such as unit tests and debuggers. In any case it is much safer to create a car-free environment except where necessary (roads), than it is to drive cars willy-nilly all over the place and hope everybody can cope with them at all times. So, if you do check for null in cases where it isn't allowed, you shouldn't let this give people the idea that it <em>is</em> allowed after all.</p> <p>[Edit - I literally just hit an example of a bug where checking for null would not find an invalid pointer. I'm going to use a map to hold some objects. I will be using pointers to those objects (to represent a graph), which is fine because map never relocates its contents. But I haven't defined an ordering for the objects yet (and it's going to be a bit tricky to do so). So, to get things moving and prove that some other code works, I used a vector and a linear search instead of a map. That's right, I didn't mean vector, I meant deque. So after the first time the vector resized, I wasn't passing null pointers into functions, but I was passing pointers to memory which had been freed.</p> <p>I make dumb errors which pass invalid garbage approximately as often as I make dumb errors which pass null pointers invalidly. So regardless of whether I add checking for null, I still need to be able to diagnose problems where the program just crashes for reasons I can't check. Since this will also diagnose null pointer accesses, I usually don't bother checking for null unless I'm writing code to generally check the preconditions on entry to the function. In that case it should if possible do a lot more than just check null.]</p> http://stackoverflow.com/questions/1918934/is-uchar-a-standard/1918960#1918960 2 Answer by Steve Jessop for Is u_char a standard? Steve Jessop 2009-12-17T01:39:47Z 2009-12-17T12:36:59Z <p>The string <code>u_char</code> does not appear in this draft of the C standard:</p> <p><a href="http://www.open-std.org/jtc1/sc22/WG14/www/docs/n1256.pdf" rel="nofollow">http://www.open-std.org/jtc1/sc22/WG14/www/docs/n1256.pdf</a></p> <p>It's not required by POSIX either, as far as I know.</p> <p>I think it's in BSD (sys/types.h), and Windows (winsock.h). I would not consider either one to be "a standard" - they aren't formal standards, and they certainly aren't part of standard C, but they are clearly defined and documented.</p> http://stackoverflow.com/questions/1918385/how-do-i-over-allocate-memory-using-new-to-allocate-variables-within-a-struct/1918422#1918422 4 Answer by Steve Jessop for How do I over-allocate memory using new to allocate variables within a struct? Steve Jessop 2009-12-16T23:00:15Z 2009-12-16T23:32:53Z <p>In the current C++ standard, <code>myDerivedStruct</code> is non-POD, because it has a base class. The result of <code>memcpy</code>ing anything into it is undefined.</p> <p>I've heard that C++0x will relax the rules, so that more classes are POD than in C++98, but I haven't looked into it. Also, I doubt that very many compilers would lay out your class in a way that's incompatible with PODs. I expect you'd only have trouble with something that didn't do the empty base class optimisation. But there it is.</p> <p>If it was POD, or if you're willing to take your chances with your implementation, then you could use <code>malloc(sizeof(myStruct)+13)</code> or <code>new char[sizeof(myStruct)+13]</code> to allocate enough space, basically the same as you would in C. The motivation presumably is to avoid the memory and time overhead of just putting a <code>std::string</code> member in your class, but at the cost of having to write the code for the manual memory management.</p> http://stackoverflow.com/questions/1917718/are-multiple-conditional-operators-in-this-situation-a-good-idea/1918357#1918357 1 Answer by Steve Jessop for Are multiple conditional operators in this situation a good idea? Steve Jessop 2009-12-16T22:46:20Z 2009-12-16T22:46:20Z <p>Just for comparison, in C++0x you can have an expression without using the conditional operator or an out-of-line function:</p> <pre><code>Vehicle new_vehicle = [&amp;]() -&gt; Vehicle { if (arg == 'B') return bus; if (arg == 'A') return airplane; if (arg == 'T') return train; if (arg == 'C') return car; if (arg == 'H') return horse; return feet; }(); </code></pre> <p>Not really any better, though.</p> http://stackoverflow.com/questions/1915900/when-do-you-worry-about-stack-size/1917057#1917057 1 Answer by Steve Jessop for When do you worry about stack size? Steve Jessop 2009-12-16T19:28:46Z 2009-12-16T19:28:46Z <p>Played this game a lot on Symbian: when to use TBuf (a string with storage on the stack), and when to use HBufC (which allocate the string storage on the heap, like std::string, so you have to cope with Leave, and your function needs a means of failing).</p> <p>At the time (maybe still, I'm not sure), Symbian threads had 4k of stack by default. To manipulate filenames, you need to count on using up to 512 bytes (256 characters).</p> <p>As you can imagine, the received wisdom was "never put a filename on the stack". But actually, it turned out that you could get away with it a lot more often than you'd think. When we started running real programs (TM), such as games, we found that we needed way more than the default stack size anyway, and it wasn't due to filenames or other specific large objects, it was due to the complexity of the game code.</p> <p>If using stack makes your code simpler, and as long as you're testing properly, and as long as you don't go completely overboard (don't have multiple levels of file-handling functions which <em>all</em> put a filename on the stack), then I'd say just try it. Especially if the function would need to be able to fail anyway, whether you're using stack or heap. If it goes wrong, you either double the stack size and be more careful in future, or you add another failure case to your function. Neither is the end of the world.</p> http://stackoverflow.com/questions/1908024/is-alignment-union-necessary-for-memory-allocation-header/1908351#1908351 0 Answer by Steve Jessop for Is alignment union necessary for memory allocation header? Steve Jessop 2009-12-15T15:51:21Z 2009-12-15T16:50:44Z <p>"The struct is larger than the single align member".</p> <p>First, says who? What if, on your implementation, <code>unsigned</code> and <code>unsigned*</code> are each 32 bits, and <code>long</code> is 128 bits (or more realistically, 16 bits and 64 bits)?</p> <p>Second, so what? Even if the struct is at least as big as <code>long</code>, it doesn't mean that it must have at least as big an alignment as <code>long</code>. If <code>unsigned</code> and <code>unsigned*</code> have no alignment requirements, then the struct has no alignment requirements. But perhaps <code>long</code> does.</p> http://stackoverflow.com/questions/1907214/why-are-inlined-static-consts-not-allowed-except-ints/1907353#1907353 5 Answer by Steve Jessop for Why are "inlined" static consts not allowed, except ints? Steve Jessop 2009-12-15T13:11:05Z 2009-12-15T13:52:25Z <p>The int and the short are legal, and if your compiler doesn't allow them then your compiler is bust:</p> <blockquote> <p>9.4.2/4: ... If the static data member is of const integral or const enumeration type, its declaration in the class definition can specify a <em>constant-initializer</em> which shall be an integral constant expression.</p> </blockquote> <p>I believe that the reason that floats and doubles aren't treated specially as constants in the C++ standard, in the way that integral types are, is that the C++ standard is wary that the arithmetic operations on float and double could be subtly different on the compiling machine, than they are on the machine that executes the code. For the compiler to evaluate a constant expression like (a + b), it needs to get the same answer that the runtime would get.</p> <p>This isn't so much of an issue with ints - you can emulate integer arithmetic relatively cheaply if it differs. But for the compiler to emulate floating-point hardware on the target device might be very difficult. It might even be impossible, if there are different versions of the chip and the compiler doesn't know which the code will run on. And that's even before you start messing with the IEEE rounding mode. So the standard avoided requiring it, so that it didn't have to define when and how compile-time evaluation can differ from runtime evaluation.</p> <p>As Brian mentions, C++0x is going to address this with <code>constexpr</code>. If I'm right about the original motivation, then presumably 10 years has been long enough to work through the difficulties in specifying this stuff.</p> http://stackoverflow.com/questions/1906691/how-to-prevent-a-file-from-being-tampered-with/1906942#1906942 7 Answer by Steve Jessop for How to prevent a file from being tampered with Steve Jessop 2009-12-15T11:55:25Z 2009-12-15T13:01:26Z <p>First, note that "signing" data (to notice when it has been tampered with) is a completely separate and independent operation from "encrypting" data (to prevent other people from reading it).</p> <p>That said, the OpenPGP standard does both. GnuPG is a popular implementation: <a href="http://www.gnupg.org/gph/en/manual.html" rel="nofollow">http://www.gnupg.org/gph/en/manual.html</a></p> <p>Basically you need to:</p> <ul> <li>Generate a keypair, but don't bother publishing the public part.</li> <li>Sign and encrypt your data (this is a single operation in gpg)</li> <li>... storage ...</li> <li>Decrypt and check the signature (this is also a single operation).</li> </ul> <p>But, beware that this is only any use if you can store your private key more securely than you store the rest of the data. If you can't guarantee the security of the key, then GPG can't help you against a malicious attempt to read or tamper with your data. And neither can any other encryption/signing scheme.</p> <p>Forgetting encryption, you might think that you can sign the data on some secure server using the private key, then validate it on some user's machine using the public key. This is fine as far as it goes, but if the user is malicious and clever, then they can invent new data, sign it using their own private key, and modify your code to replace your public key with theirs. Their data will then validate. So you still need the storage of the public key to be tamper-proof, according to your threat-model.</p> <p>You can implement an equivalent yourself, something along the lines of:</p> <ul> <li>Choose a longish string of random characters. This is your key.</li> <li>Concatenate your data with the key. Hash this with a secure hash function (SHA-256). Then concatenate the resulting hash with your data, and encrypt it using the key and a secure symmetric cipher (AES).</li> <li>... storage ...</li> <li>Decrypt the data, chop off the hash value, put back the key, hash it, and compare the result to the hash value to verify that it has not been modified.</li> </ul> <p>This will likely be faster and use less code in total than gpg: for starters, PGP is public key cryptography, and that's more than you require here. But rolling your own means you have to do some work, and write some of the code, and check that the protocol I've just described doesn't have some stupid error in it. For example, it has potential weaknesses if the data is not of fixed length, which HMAC solves.</p> <p>Good security avoids doing work that some other, smarter person has done for you. This is the virtuous kind of laziness.</p> http://stackoverflow.com/questions/483997/what-language-has-the-longest-hello-world-program/1904586#1904586 1 Answer by Steve Jessop for What language has the longest "Hello world" program? Steve Jessop 2009-12-15T00:51:19Z 2009-12-15T00:51:19Z <p>Symbian ain't pretty:</p> <p><a href="http://wiki.forum.nokia.com/index.php/Understanding%5Fthe%5FSimple%5FHelloworld%5FSymbian%5Fproject" rel="nofollow">http://wiki.forum.nokia.com/index.php/Understanding%5Fthe%5FSimple%5FHelloworld%5FSymbian%5Fproject</a></p> <p>4 cpp source files, 6 header files, 2 resource files, 3 build files.</p> <p>OK, so you could do without the resource files, and obviously you can pretty much just concatenate the source files. It's also possible to take some short cuts with the UI framework, or just write a Symbian console app. </p> <p>But surely the point of a "hello world" isn't code golf, it's to demonstrate the things which an application developer will actually need to do, in a realistic scenario, in order to produce an output?</p> http://stackoverflow.com/questions/1902432/finding-out-no-bits-set-in-a-variable-in-faster-manner/1902485#1902485 2 Answer by Steve Jessop for Finding out no bits set in a variable in faster manner Steve Jessop 2009-12-14T18:05:32Z 2009-12-15T00:32:23Z <p>If you're asking the question, then chances are <code>__builtin_popcount</code> on gcc is at least as fast as what you're currently doing. __builtin_popcount can generally be beaten on x86, so presumably on other CPUs too, but you don't say what your CPU is other than "embedded". It affects the answer.</p> <p>If you're not using gcc, then you need to look up how to do a fast popcount on your actual compiler and/or CPU. For obvious reasons, there is no such thing as "the fastest way to count set bits in C".</p> http://stackoverflow.com/questions/1902572/shifting-right-what-i-am-doing-wrong/1902798#1902798 2 Answer by Steve Jessop for shifting right / what I am doing wrong? Steve Jessop 2009-12-14T18:56:42Z 2009-12-15T00:30:38Z <p>"it does not set the MSB bit correct".</p> <p>The C standard says:</p> <p>6.5.7/5 ... If E1 has a signed type and a negative value, the resulting value is implementation-defined.</p> <p>See this draft, for example: <a href="http://www.open-std.org/jtc1/sc22/WG14/www/docs/n1256.pdf" rel="nofollow">http://www.open-std.org/jtc1/sc22/WG14/www/docs/n1256.pdf</a></p> <p>Presumably <code>char</code> is signed on your compiler, so you should check your compiler docs to see what is the correct value of the MSB. And all the other bits.</p> http://stackoverflow.com/questions/1903962/passing-a-pointer-to-a-base-class-to-derived-classs-member-functions-in-c/1903996#1903996 1 Answer by Steve Jessop for Passing a pointer to a base class to derived class's member functions in C++ Steve Jessop 2009-12-14T22:35:20Z 2009-12-14T23:49:33Z <p>You might limp home with this, depending on your object heirarchy:</p> <pre><code>bool A::compare(Base *p){ A *pa = dynamic_cast&lt;A*&gt;(p); if (!pa) return false; return x == pa-&gt;x; }; </code></pre> <p>Actually, there are serious difficulties with implementing polymorphic comparisons. Not the least problem is that if a is an instance of A, and c is an instance of some derived class C of A, then using this technique you could easily end up with a.compare(c) being true, but c.compare(a) being false.</p> <p>You might be better either:</p> <ul> <li>to make your comparisons non-polymorphic, and put it on the caller to compare them as type Base only if all they care about is that they're equal "as far as Base can tell". But this is less useful for the caller, and completely pointless with Base having no data members as in this example.</li> <li>Have a non-virtual comparison in Base, which checks whether the two objects have equal <code>typeid</code>, returns false if they don't, and calls a virtual comparisonImpl function on the two of them if they are. Then A::comparisonImpl knows that its parameter is an instance of A, and can static_cast it:</li> </ul> <p>.</p> <pre><code>class Base { public: bool compare(Base *p) { if (typeid(*this) != typeid(*p)) return false; return compareImpl(p); } private: virtual bool compareImpl(Base *p) = 0; }; class A : public Base { int x; private: bool compareImpl(Base *p) { return x == static_cast&lt;A*&gt;(p)-&gt;x; } }; </code></pre> http://stackoverflow.com/questions/1901953/best-hash-function-for-mixed-numeric-and-literal-identifiers/1902221#1902221 3 Answer by Steve Jessop for Best hash function for mixed numeric and literal identifiers Steve Jessop 2009-12-14T17:17:12Z 2009-12-14T17:45:49Z <p>Two good hash functions can both be mapped into the same space of values, and will in general not cause any new problems as a result of combining them.</p> <p>So your hash function can look like this:</p> <pre><code>if it's an integer value: return int_hash(integer value) return string_hash(string value) </code></pre> <p>Unless there's any clumping of your integers around certain values modulo N, where N is a possible number of buckets, then <code>int_hash</code> can just return its input.</p> <p>Picking a string hash is not a novel problem. Try "djb2" (<a href="http://www.cse.yorku.ca/~oz/hash.html" rel="nofollow">http://www.cse.yorku.ca/~oz/hash.html</a>) or similar, unless you have obscene performance requirements.</p> <p>I don't think there's much point in modifying the hash function to take account of the common prefixes. If your hash function is good to start with, then it is unlikely that common prefixes will create any clumping of hash values.</p> <p>If you do this, and the hash doesn't unexpectedly perform badly, and you put your several million hash values into a few thousand buckets, then the bucket populations will be normally distributed, with mean (several million / a few thousand) and variance 1/12 (a few thousand)^2</p> <p>With an average of 1500 entries per bucket, that makes the standard deviation somewhere around 430. 95% of a normal distribution lies within 2 standard deviations of the mean, so 95% of your buckets will contain 640-2360 entries, unless I've done my sums wrong. Is that adequate, or do you need the buckets to be of more closely similar sizes?</p> http://stackoverflow.com/questions/1900756/how-do-you-convert-from-a-nsacstring-to-a-lpcwstr/1901498#1901498 2 Answer by Steve Jessop for How do you convert from a nsACString to a LPCWSTR? Steve Jessop 2009-12-14T15:19:16Z 2009-12-14T15:29:25Z <p>It depends whether your nsACString (which I'll call <code>str</code>) holds ASCII or UTF-8 data:</p> <h3>ASCII</h3> <pre><code>std::vector&lt;WCHAR&gt; wide(str.Length()+1); std::copy(str.beginReading(), str.endReading(), wide.begin()); // I don't know whether nsACString has a terminating NUL, best to be sure wide[str.Length()] = 0; LPCWSTR newstr = &amp;wide[0]; </code></pre> <h3>UTF-8</h3> <pre><code>// get length, including nul terminator int len = MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, str.BeginReading(), str.Length(), 0, 0); if (len == 0) panic(); // happens if input data is invalid UTF-8 // allocate enough space std::vector&lt;WCHAR&gt; wide(len); // convert string MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, str.BeginReading(), str.Length(), &amp;wide[0], len) LPCWSTR newstr = &amp;wide[0]; </code></pre> <p>This allocates only as much space as is needed - if you want faster code that potentially uses more memory than necessary, you can replace the first two lines with:</p> <pre><code>int len = str.Length() + 1; </code></pre> <p>This works because a conversion from UTF-8 to WCHAR never results in more characters than there were bytes of input.</p> http://stackoverflow.com/questions/1900514/what-is-the-appropriate-english-language-terminology-for-referring-to-the-object/1900871#1900871 0 Answer by Steve Jessop for What is the appropriate English language terminology for referring to the object in C++? Steve Jessop 2009-12-14T13:16:50Z 2009-12-14T13:32:02Z <p>In comments, I usually say either "this" or "ourself" (because I generally write comments in first-person plural, but "ourselves" is too weird when there's only one object).</p> <p>In documentation, I say "the <code>&lt;whatever&gt;</code>". If that's ambiguous (because the function takes another one as a parameter, for instance), I say "this object", or "this <code>&lt;whatever&gt;</code>". <code>&lt;whatever&gt;</code> is either the class name, or some other term used in the documentation to explain what the class represents.</p> <pre><code>/** * An utterly useless write-only counter, with arbitrary initial value. */ class Counter { unsigned int count; public: /** * Increments the counter */ Counter &amp;operator++() { // We need to add 1 to ourself. I found a snippet online that does it: ++count; // return ourself return *this; } /** * Adds together this counter and "other". */ Counter operator+(const Counter &amp;other) const { Counter result; // new count is our count plus other count result.count = count + other.count; return result; } }; </code></pre> http://stackoverflow.com/questions/1896440/is-this-c-code-wrong/1896456#1896456 1 Answer by Steve Jessop for Is this C code wrong? Steve Jessop 2009-12-13T13:05:44Z 2009-12-13T14:37:33Z <p>If you want the function to increment <code>c</code> when called with <code>&amp;c</code>, then write this:</p> <pre><code>void function(int *p) { ++(*p); } </code></pre> <p><code>function(int *p)</code> means that <code>p</code> is the function parameter. So whatever value the caller gives, that will be assigned to <code>p</code> (not to <code>*p</code>).</p> <p>The type of <code>p</code> is <code>int *</code>. That is, <code>p</code> is a pointer-to-int.</p> <p>If <code>p</code> is a pointer-to-int, then <code>*p</code> is the int it points to.</p> <p><code>c</code> is an int. Therefore <code>&amp;c</code> is a pointer-to-int, and the int it points to is <code>c</code>. Therefore, if <code>p</code> is <code>&amp;c</code>, then <code>*p</code> is <code>c</code>.</p> <p>With my version of the function, this code:</p> <pre><code>int c = 5; function(&amp;c); </code></pre> <p>Does the same as this code:</p> <pre><code>int c = 5; // same as before int *p; // parameter of the function p = &amp;c; // assign the caller's value to the parameter ++(*p); // body of the function, increments *p, which is the same as c. </code></pre> <p>Which does the same as this code:</p> <pre><code>int c = 5; ++c; </code></pre> http://stackoverflow.com/questions/1884684/how-important-is-it-to-check-return-values-when-using-the-python-c-api/1885440#1885440 0 Answer by Steve Jessop for How important is it to check return values when using the Python C API? Steve Jessop 2009-12-11T02:19:49Z 2009-12-13T14:07:17Z <p>Here are two ways I might write that code, influenced by my experience writing in two heavily macro-ised pseudo-assembler languages, one of which wasn't C. I've moved the deref of fullname, not because it's wrong in your code, but because I want to demonstrate how you handle a longer-lived resource in both schemes. So imagine that "fullname" is going to be needed again later in the routine:</p> <h3>Arrow code</h3> <pre><code>result = NULL; py_fullname = PyObject_CallMethod(os, "path.join", "ss", folder, filename); if (py_fullname) { image = PyObject_CallMethodObjArgs(pygame, "image.load", py_fullname, NULL); if (image) { image = PyObject_CallMethodObjArgs(image, "convert", NULL); result = // something to do with image, presumably. } Py_DECREF(py_fullname); } Py_DECREF(pygame); Py_DECREF(os); return result; </code></pre> <p>The way this game is played, is that whenever you call a function which returns a resource, you check the return value immediately (or perhaps after freeing some resource which is no longer required, as in your example code), and the block corresponding to a successful call <em>must</em> either release the resource, or assign it to a return value, or actually return it, before the block is exited. This will usually be either in the second line of the block, after it has been used in the first line, or else in the last line of the block.</p> <p>It's called "arrow code" because if you make 5 or 6 such calls in a function, you end up with 5 or 6 levels of indentation, and your function looks like a "turn right" sign. When this happens you either refactor, or you go against your every Pythonic instinct, use tabs for indentation, and reduce the tab stops ;-)</p> <h3>Goto</h3> <pre><code>result = NULL; py_fullname = PyObject_CallMethod(os, "path.join", "ss", folder, filename); if (!py_fullname) goto cleanup_pygame image = PyObject_CallMethodObjArgs(pygame, "image.load", py_fullname, NULL); if (!image) goto cleanup_fullname image = PyObject_CallMethodObjArgs(image, "convert", NULL); result = // something to do with image, presumably. cleanup_fullname: Py_DECREF(py_fullname); cleanup_pygame: Py_DECREF(pygame); Py_DECREF(os); return result; </code></pre> <p>This goto code is structurally identical to the arrow code, just less indented and easier to mess up and jump to the wrong label. In some circumstances you will clean up different resources on success from what you clean up on failure (for instance if you're constructing and returning something, then on failure you need to clean up whatever you've done so far, but on success you only clean up what you're not returning). Those are the circumstances where the goto code is a clear win over the arrow code, because you can have separate cleanup paths for the two cases, but they still look the same, appear together at the end of the routine, and perhaps even share code. So you might end up with something like this:</p> <pre><code>result = NULL; helper = allocate_something; if (!helper) goto return_result; result = allocate_something_else; if (!result) goto error_return; // OK, result is already NULL, but it makes the point result-&gt;contents = allocate_another_thing; if (!result-&gt;contents) goto error_cleanup_result; result-&gt;othercontents = allocate_last_thing; if (!result-&gt;othercontents) goto error_cleanup_contents; free_helper: free(helper); return_result: return result; error_cleanup_contents: free(result-&gt;contents); error_cleanup_result: free(result); error_return; result = NULL; goto free_helper; </code></pre> <p>Yes, it's horrible, and Python or C++ programmers will be physically sick at the sight of it. If I never have to write code like this again, I won't be all that disappointed. But as long as you have a systematic scheme for how resources are cleaned up, you should always know exactly what error label to jump to when something goes wrong, and that error label should "know" to clean up all resources that have been allocated so far. Doing it in reverse order allows fall-through to share the code. And once you're used to it, it's reasonably easy to do two things: first follow the path from any given error label, to the exit, and confirm that everything which should be freed is freed. Second, see the <em>difference</em> between two error cases, and confirm that this is the correct difference between the error-handling needed, because the difference is precisely to free the thing that was allocated in between the jumps to those labels.</p> <p>That said, a semi-decent optimising compiler will common up the code for the error cases in your example. It's just easier to make a mistake when you have code copy-and-pasted about the place like that, especially when you modify it later.</p> http://stackoverflow.com/questions/1894886/parsing-a-comma-delimited-stdstring/1894956#1894956 0 Answer by Steve Jessop for Parsing a comma-delimited std::string Steve Jessop 2009-12-12T22:47:43Z 2009-12-12T22:47:43Z <pre><code>#include &lt;sstream&gt; #include &lt;vector&gt; const char *input = "1,1,1,1,2,1,1,1,0"; int main() { std::stringstream ss(input); std::vector&lt;int&gt; output; int i; while (ss &gt;&gt; i) { output.push_back(i); ss.ignore(1); } } </code></pre> <p>Bad input (for instance consecutive separators) will mess this up, but you did say simple.</p> http://stackoverflow.com/questions/1887111/merged-linked-list-in-c/1888028#1888028 3 Answer by Steve Jessop for merged linked list in C Steve Jessop 2009-12-11T13:19:49Z 2009-12-12T02:58:44Z <p>Do you mean you have a Y-shape, like this:</p> <p>list1: A -> B -> C -> D -> E -> F</p> <p>list2: X -> Y -> Z -> E -> F</p> <p>Where A .. Z are singly-linked list nodes. We want to find the "merge point" E, which is defined to be the first node appearing in both lists. Is that correct?</p> <p>If so, then I would attach the last node of list2 (F) to the first node of list2 (X). This turns list2 into a loop:</p> <p>list2 : X -> Y -> Z -> E -> F -> X -> ...</p> <p>But more importantly:</p> <p>list1 : A -> B -> C -> D -> E -> F -> X -> Y -> Z -> E -> ...</p> <p>This reduces the question to <a href="http://en.wikipedia.org/wiki/Cycle_detection#Tortoise_and_hare" rel="nofollow">a previously-solved problem</a>, which can be solved in O(n) time and O(1) additional storage.</p> <p>But reading your question, another possibility is that by "merge" you mean "insert". So you have two lists like this:</p> <p>list1: A -> B -> C</p> <p>list2: D -> E -> F</p> <p>and then another completely separate list:</p> <p>list3: A -> B -> D -> E -> F -> C</p> <p>where this time, A .. F are the values contained in the list, not the nodes themselves. </p> <p>If the values are all different, you just need to search list3 for D (or for the later of D and A, if you don't know which list it was that was copied into the other). Which seems like a pointless question. If values can be repeated, then you have to check for the full sequence of list2 inside list3. But just because you find "DEF" doesn't mean that's where list2 was inserted - maybe "DEF" already occurred several times in list1 beforehand, and you've just found the first of those. For instance if I insert "DEF" into "ABCDEF", and the result is "ABCDEFDEF", then did I insert at index 3 or at index 6? There's no way to tell, so the question can't be answered.</p> <p>So, in conclusion, I don't understand the question. But I might have answered it anyway.</p> http://stackoverflow.com/questions/1888293/union-members-may-not-have-constructors-but-stdpair-okay/1889785#1889785 2 Answer by Steve Jessop for union members may not have constructors, but `std::pair` okay? Steve Jessop 2009-12-11T17:56:24Z 2009-12-11T17:56:24Z <p>I would replace this:</p> <pre><code>size_t hash() const { union {T f; size_t s;} u = { val }; return u.s; } </code></pre> <p>With this:</p> <pre><code>size_t hash() const { size_t s = 0; memcpy(&amp;s, &amp;val, std::min(sizeof(size_t), sizeof(T))); return s; } </code></pre> <p>Copies the smaller of the two sizes rather than the larger, and if memcpy is an intrinsic on your compiler then you're looking good for optimisation. Most importantly, though, it doesn't matter what constructors T has.</p> <p>It's not a good hash function, though, if T is a large type. In your example MyClass, you might find that <code>bool</code> and <code>size_t</code> are the same size in your implementation, hence the double doesn't participate in the hash at all so there are only two possible hashed values.</p> <p>Still, it could be worse. If T has any virtual functions, you'll probably find that all instances hash to the same value: the address of the vtable...</p> http://stackoverflow.com/questions/1884831/is-the-ability-to-recurse-a-function-of-the-processor-or-the-programming-language/1885372#1885372 1 Answer by Steve Jessop for Is the ability to recurse a function of the processor or the programming language/compiler or both? Steve Jessop 2009-12-11T01:54:57Z 2009-12-11T01:54:57Z <p>You don't need explicit hardware support for a stack and recursive calls, but the processor does need certain capabilities. I think the following is sufficient on a register-based machine:</p> <ul> <li>You can write a stored value to the program counter, for instance with a jump instruction. This is needed to return.</li> <li>You can afford to use up a register storing your own stack pointer.</li> <li>Interrupts don't mess things up too badly (although perhaps you can live with having no stack in interrupt context even if they do).</li> </ul> <p>Bootstrap code has to assign a region of memory to use as stack, and away you go.</p> <p>I guess a few processors don't provide this. Most processors have explicit support for a stack pointer and a link pointer, and instructions that help with the standard calling convention. But you <em>could</em> invent and implement your own calling convention.</p> http://stackoverflow.com/questions/1881468/c-what-is-compile-time-polymorphism-and-why-does-it-only-apply-to-functions/1881964#1881964 4 Answer by Steve Jessop for C++ What is compile-time polymorphism and why does it only apply to functions? Steve Jessop 2009-12-10T15:57:10Z 2009-12-10T16:58:03Z <p>The thing which only applies to functions is template parameter deduction. If I have a function template:</p> <pre><code>template &lt;typename T&gt; void foo(T &amp;t); </code></pre> <p>Then I can do <code>int a = 0; foo(a);</code>, and this will be equivalent to <code>int a = 0; foo&lt;int&gt;(a);</code>. The compiler works out that I mean <code>foo&lt;int&gt;</code>. At least, it works out that it should use <code>foo&lt;int&gt;</code> - if that's not what I meant then bad luck to me, and I could have written <code>foo&lt;unsigned int&gt;(a);</code> or whatever.</p> <p>However, if I have a class template:</p> <pre><code>template &lt;typename T&gt; struct Foo { T &amp;t; Foo(T &amp;t) : t(t) {} T &amp;getT() { return t; } }; </code></pre> <p>Then I can't do <code>int a = 0; Foo(a).getT();</code>. I have to specify <code>Foo&lt;int&gt;(a)</code>. The compiler isn't allowed to work out that I mean <code>Foo&lt;int&gt;</code>.</p> <p>So you might say that class templates are "less polymorphic" than function templates. Polymorphism usually means that you don't have to write code to make the type of your object explicit. Function templates allow that (in this particular case), and class templates don't.</p> <p>As for why this is the case - the standard says so, I don't know why. The usual suspects are (a) it's too difficult to implement, (b) it's not useful, in the opinion of the standard committee, or (c) it creates some contradiction or ambiguity somewhere else in the language.</p> <p>But you can still do other kinds of polymorphism with classes:</p> <pre><code>template &lt;typename T&gt; struct Foo { T &amp;t; Foo(T &amp;t): t(t) {} void handleMany(int *ra, size_t s) { for (size_t i = 0; i &lt; s; ++i) { t.handleOne(ra[i]); } } }; </code></pre> <p>This is usually also called compile-time polymorphism, because as far as the author of the template is concerned, <code>t.handleOne</code> could be anything, and what it is will be resolved when necessary, "later" in the compilation when Foo is instantiated.</p> http://stackoverflow.com/questions/1881230/what-advantages-are-there-to-programming-for-a-non-cache-coherent-multi-core-mach/1881348#1881348 2 Answer by Steve Jessop for What advantages are there to programming for a non-cache-coherent multi-core machine? Steve Jessop 2009-12-10T14:29:43Z 2009-12-10T16:22:15Z <p>You don't as such take advantage of cache non-coherence. You can't write code which relies on different cores having different views of memory, because a non-coherent cache doesn't <em>guarantee</em> to show different memory to different cores. It just reserves the right to do that.</p> <p>Cache coherence costs circuits and time. Non-coherent caches are therefore cheaper (and cooler, perhaps?) and faster. Memory access might be faster in cycles, or might be the same best-case speed but with fewer stalls due to cache synchronisation and especially false sharing.</p> <p>So it's not so much extra things you do to take advantage of non-coherence, it's the things that you don't have to do because you've dropped the disadvantages of coherence - you don't have to redesign your parallel code because it's spending all its time sitting around waiting for the result of a memory store from another core.</p> <p>The downside on a non-coherent cache architecture at first appears to be that find yourself using additional synchronisation that's provided automatically by coherent caches. No double-checked locking for you. Then you realise that in effect, the coherent-cache architectures do this synchronisation (albeit in a super-fast hardware-implemented form) for <em>every single memory access</em>, and block if the cache line is dirty, whether you need it to or not. That cheers me right up :-)</p> http://stackoverflow.com/questions/1879550/should-one-really-set-pointers-to-null-after-freeing-them/1880915#1880915 3 Answer by Steve Jessop for Should one really set pointers to `NULL` after freeing them? Steve Jessop 2009-12-10T13:15:10Z 2009-12-10T13:27:37Z <p>I don't do this. I don't particularly remember any bugs that would have been easier to deal with if I did. But it really depends on how you write your code. There are approximately three situations where I free anything:</p> <ul> <li>When the pointer holding it is about to go out of scope, or is part of an object which is about to go out of scope or be freed.</li> <li>When I am replacing the object with a new one (as with reallocation, for instance).</li> <li>When I am releasing an object which is optionally present.</li> </ul> <p>In the third case, you set the pointer to NULL. That's not specifically because you're freeing it, it's because the whatever-it-is is optional, so of course NULL is a special value meaning "I haven't got one".</p> <p>In the first two cases, setting the pointer to NULL seems to me to be busy work with no particular purpose:</p> <pre><code>int doSomework() { char *working_space = malloc(400*1000); // lots of work free(working_space); working_space = NULL; // wtf? In case someone has a reference to my stack? return result; } int doSomework2() { char * const working_space = malloc(400*1000); // lots of work free(working_space); working_space = NULL; // doesn't even compile, bad luck return result; } void freeTree(node_type *node) { for (int i = 0; i &lt; node-&gt;numchildren; ++i) { freeTree(node-&gt;children[i]); node-&gt;children[i] = NULL; // stop wasting my time with this rubbish } free(node-&gt;children); node-&gt;children = NULL; // who even still has a pointer to node? // Should we do node-&gt;numchildren = 0 too, to keep // our non-existent struct in a consistent state? // After all, numchildren could be big enough // to make NULL[numchildren-1] dereferencable, // in which case we won't get our vital crash. // But if we do set numchildren = 0, then we won't // catch people iterating over our children after we're freed, // because they won't ever dereference children. // Apparently we're doomed. Maybe we should just not use // objects after they're freed? Seems extreme! free(node); } int replace(type **thing, size_t size) { type *newthing = copyAndExpand(*thing, size); if (newthing == NULL) return -1; free(*thing); *thing = NULL; // seriously? Always NULL after freeing? *thing = newthing; return 0; } </code></pre> <p>It's true that NULL-ing the pointer can make it more obvious if you have a bug where you try to dereference it after freeing. Dereferencing probably does no immediate harm if you don't NULL the pointer, but is wrong in the long run.</p> <p>It's also true that NULL-ing the pointer <em>obscures</em> bugs where you double-free. The second free does no immediate harm if you do NULL the pointer, but is wrong in the long run (because it betrays the fact that your object lifecycles are broken). You can assert things are non-null when you free them, but that results in the following code to free a struct which holds an optional value:</p> <pre><code>if (thing-&gt;cached != NULL) { assert(thing-&gt;cached != NULL); free(thing-&gt;cached); thing-&gt;cached = NULL; } free(thing); </code></pre> <p>What that code tells you, is that you've got in too far. It should be:</p> <pre><code>free(thing-&gt;cached); free(thing); </code></pre> <p>I say, NULL the pointer if it's <em>supposed</em> to remain usable. If it isn't usable any more, best not to make it falsely appear to be, by putting in a potentially-meaningful value like NULL. If you want to provoke a page fault, use a platform-dependent value which isn't dereferancable, but which the rest of your code won't treat as a special "everything is fine and dandy" value:</p> <pre><code>free(thing-&gt;cached); thing-&gt;cached = (void*)(0xFEFEFEFE); </code></pre> <p>If you can't find any such constant on your system, you may be able to allocate a non-readable and/or non-writeable page, and use the address of that.</p> http://stackoverflow.com/questions/1880573/c-difference-between-char-var-and-char-var/1880580#1880580 2 Answer by Steve Jessop for C - Difference between "char var[]" and "char *var" ? Steve Jessop 2009-12-10T12:13:27Z 2009-12-10T12:13:27Z <p>At a guess, the function <code>f</code> modifies the contents of the string passed to it.</p> http://stackoverflow.com/questions/1876442/usage-of-gpl-plugins-for-proprietary-software/1876920#1876920 2 Answer by Steve Jessop for Usage of GPL plugins for proprietary software? Steve Jessop 2009-12-09T21:13:06Z 2009-12-10T02:35:39Z <p>I don't think it has been determined by a court in any jurisdiction when (if ever) dynamic linking creates a derivative work. The GNU project and FSF have their opinion, but it's not their decision. So it probably also hasn't been determined who creates that work - the author of the executable, the author of the library, or the user.</p> <p>The FSF has an interest here, which is that it wants all software to be GPL, or at least GPL-compatible. It might be too optimistic in its expectation that a court will agree with its interpretations. This is natural: if everyone made the same predictions, then nobody would ever go to court.</p> <p>The FSF basically says that if code links against a GPL dynamic library, then the code must have a GPL-compatible license. I don't think this explicitly addresses your point, but even so it seems a little odd to me. When you create and distribute your proprietary code, you have no way of knowing the licensing of the dynamic library it will be linked against. You know the licensing of any headers you used, and the API the library implements. Plugins generally don't even need much of a header, if any, to define the interface.</p> <p>So for all you know or can control, your code could be linked against a closed source or a GPL or a public domain implementation of some specified plugin or library API. For instance when you distribute a Windows executable, you don't know whether it will be linked against Windows, or WINE (LGPL), or some hypothetical full GPL version of WINE which I'm going to write tomorrow. When you distribute an executable intended for Linux, you don't know that I won't write a proprietary "LINE" that implements the whole of GNU/Linux. Of course, you do have a strong hunch that no such LINE exists already, and that could be legally relevant.</p> <p>So, if you distribute code which <em>will be</em> dynamically linked against GPL code, I personally don't see how you've created a derivative work of a GPL work, no matter how many function calls are made in each direction, or what data structures are shared. As long as the binary you distribute doesn't have any GPL-derived code in it, what's the derivative work you're allegedly distributing? The users might create such a derivative work, but they're entitled to, because they aren't distributing it, merely creating it transiently on their machines. What are the FSF going to do you for, contributory copyright infringement because you allowed users to bind against a GPL library, rather than a public domain one with the same API? If when you released it, it was intended to bind against a proprietary dll, but then GNU came along and wrote a free, full-GPL implementation of the same dll API, and I bind your code against that, have you suddenly started infringing the GPL? I'm confused. But one thing's for sure, I will not be the judge in that case, if it ever happens.</p> <p>You could perhaps look at whether there exist GPL codecs for WMP (web search says, yes, of course there are). Their authors clearly think you can write an open-source plugin for a proprietary product. Not sure whether that's analogous, either.</p> http://stackoverflow.com/questions/1877745/portable-thread-safe-lazy-singleton/1878200#1878200 1 Answer by Steve Jessop for Portable thread-safe lazy singleton Steve Jessop 2009-12-10T01:55:15Z 2009-12-10T02:06:37Z <p>It's usually better to have a non-lazy singleton which does nothing in its constructor, and then in GetInstance do a thread-safe call once to a function which allocates any expensive resources. You're already creating a Mutex non-lazily, so why not just put the mutex and some kind of Pimpl in your Singleton object?</p> <p>By the way, this is easier on Posix:</p> <pre><code>struct Singleton { static Singleton *GetInstance() { pthread_once(&amp;control, doInit); return instance; } private: static void doInit() { // slight problem: we can't throw from here, or fail try { instance = new Singleton(); } catch (...) { // we could stash an error indicator in a static member, // and check it in GetInstance. std::abort(); } } static pthread_once_t control; static Singleton *instance; }; pthread_once_t Singleton::control = PTHREAD_ONCE_INIT; Singleton *Singleton::instance = 0; </code></pre> <p>There do exist pthread_once implementations for Windows and other platforms.</p> http://stackoverflow.com/questions/1875609/better-way-to-count-things/1876258#1876258 1 Answer by Steve Jessop for Better way to count things? Steve Jessop 2009-12-09T19:32:38Z 2009-12-09T19:32:38Z <p>In a comment to Jerry's answer I mentioned using a functor. Here's the sort of thing I mean (untested code):</p> <pre><code>struct StringCounter { std::map&lt;std::string, int&gt; counts; void operator()(const std::string &amp;s) { ++counts[s]; } }; template &lt;typename Output&gt; void splitString(const string &amp;input, const string &amp;separator, Output &amp;out) { // do whatever you currently do to get each string, call it "s"... out(s); // lather, rinse, repeat } vector&lt; pair&lt;string,int&gt; &gt; getFreqcounts(const string &amp;input) { StringCounter sc; splitString(input,"\n",sc); return vector&lt; pair&lt;string,int&gt; &gt; (sc.counts.begin(),sc.counts.end()); } </code></pre> http://stackoverflow.com/questions/1931692/any-disadvantage-if-only-using-cpp-files-without-separate-header-files/1931697#1931697 Comment by Steve Jessop on Any disadvantage if only using cpp files without separate header files? Steve Jessop 2009-12-19T02:25:07Z 2009-12-19T02:25:07Z You can do that, but standard practice is to call the file &quot;Hello.h&quot;, not &quot;Hello.cpp&quot;. If you include it from other files, then it's a header, no matter what it defines. Calling a file &quot;*.cpp&quot; tells other people that you're going to compile it as a &quot;top-level&quot; source file. http://stackoverflow.com/questions/1930459/c-delete-it-deletes-my-objects-but-i-can-still-access-the-data/1930520#1930520 Comment by Steve Jessop on C++ delete - It deletes my objects but I can still access the data? Steve Jessop 2009-12-19T01:02:21Z 2009-12-19T01:02:21Z Of course you can check for null before deleting (and hence catch the double-free error), but then you lose the ability to store null in that field in non-error cases. http://stackoverflow.com/questions/1930459/c-delete-it-deletes-my-objects-but-i-can-still-access-the-data/1930520#1930520 Comment by Steve Jessop on C++ delete - It deletes my objects but I can still access the data? Steve Jessop 2009-12-19T01:01:20Z 2009-12-19T01:01:20Z @Franci: when you have a function that's only supposed to be called once, that deletes the pointer and then nulls it. Some erroneous code elsewhere calls your function twice, and nothing goes wrong, despite the fact that this other code has a double-free error, which could easily turn into a user-after-free error in future, or in slightly different circumstances. http://stackoverflow.com/questions/1931126/is-it-good-practice-to-null-a-pointer-after-deleting-it Comment by Steve Jessop on Is it good practice to NULL a pointer after deleting it? Steve Jessop 2009-12-19T00:54:42Z 2009-12-19T00:54:42Z Duplicate: <a href="http://stackoverflow.com/questions/1879550/should-one-really-set-pointers-to-null-after-freeing-them/" rel="nofollow" title="should one really set pointers to null after freeing them">stackoverflow.com/questions/1879550/&hellip;</a> http://stackoverflow.com/questions/1930459/c-delete-it-deletes-my-objects-but-i-can-still-access-the-data/1930520#1930520 Comment by Steve Jessop on C++ delete - It deletes my objects but I can still access the data? Steve Jessop 2009-12-18T21:25:03Z 2009-12-18T21:25:03Z &quot;This prevents us from accidentally accessing invalid memory&quot;. This is not true, and it demonstrates why using this trick should be expected to be correlated with writing bad code. <code>char &#42;ptr = new char; char &#42;ptr2 = ptr; Delete(ptr); &#42;ptr2 = 0;</code>. I accidentally accessed invalid memory. It's just muddled thinking to null a <i>reference</i>, in the belief that this protects the <i>object</i> referred to. Also, don't forget that you'd need a separate version of this function for pointers to arrays. http://stackoverflow.com/questions/1926282/does-moving-values-of-one-type-with-another-type-violate-strict-aliasing/1926406#1926406 Comment by Steve Jessop on Does moving values of one type with another type violate strict aliasing? Steve Jessop 2009-12-18T18:05:54Z 2009-12-18T18:05:54Z Actually, I think I'm wrong. Each <code>buffer&#95;cc[i]</code> is a <code>char&#42;</code>, so it can legally point to part of buffer, because a <code>char&#42;</code> can alias anything. So as far as strict aliasing is concerned, the modifications to buffer can't be eliminated, and have to happen before <code>buffer&#95;cc[i]</code> is passed to printf. They don't have to happen before <code>buffer&#95;cc[0]</code> is loaded from memory, but unless that loop is unrolled, it would be very odd indeed for the compiler to leave them until that point. If the loop didn't printf, but used the pointers without dereferencing them, it'd be different. http://stackoverflow.com/questions/1926282/does-moving-values-of-one-type-with-another-type-violate-strict-aliasing/1926406#1926406 Comment by Steve Jessop on Does moving values of one type with another type violate strict aliasing? Steve Jessop 2009-12-18T17:48:48Z 2009-12-18T17:48:48Z &quot;It's hard to see&quot; - for instance if the &quot;//How about this?&quot; paragraph were removed, then I think the compiler is allowed to decide (through data flow analysis) that all that <code>buffer[0] = buffer[3];</code> stuff is dead code, since buffer is never used again in the program, and eliminate it. Certainly it can reorder it after the printfs, if it thinks that will be more efficient. http://stackoverflow.com/questions/1928800/for-real-time-application-which-is-better-c-or-c/1928828#1928828 Comment by Steve Jessop on For real-time application, which is better C or C++? Steve Jessop 2009-12-18T17:30:52Z 2009-12-18T17:30:52Z For that matter, <code>i++</code> in C might make a call to a function in a floating-point emulation library. Not much different from the situation with a user-defined operator overload in C++. OK, so there's an upper limit on how much work a floating-emulation routine will actually do, whereas in C++ there's no upper limit to how much work an operator overload can do. But in both cases, the code if well-written will do as much work as is necessary to post-increment i, and no more. If you don't want to do that much work, then you can't increment i. http://stackoverflow.com/questions/1929484/function-pointers-query/1929527#1929527 Comment by Steve Jessop on function pointers query Steve Jessop 2009-12-18T17:16:57Z 2009-12-18T17:16:57Z Or just <code>void (&#42;my&#95;func&#95;ptr)(void&#42;);</code>, if you want to declare a variable of that type without naming the type. But really you should name function-pointer types, because it's a lot of error-prone hassle to keep repeating them in full all over the place. http://stackoverflow.com/questions/1929209/when-overriding-a-virtual-member-function-why-does-the-overriding-function-alway/1929404#1929404 Comment by Steve Jessop on When overriding a virtual member function, why does the overriding function always become virtual? Steve Jessop 2009-12-18T17:10:52Z 2009-12-18T17:10:52Z Where in the standard does it specify that B::foo cannot be called directly in this example? I don't even quite see how the standard can forbid it - b cannot possibly belong to any derived class of B, so surely the &quot;as-if&quot; rule permits compilers to do anything they like, as long as the right function is called. Since the compiler knows that function is B::foo, and none other, why bother calling virtually? http://stackoverflow.com/questions/1908024/is-alignment-union-necessary-for-memory-allocation-header/1908598#1908598 Comment by Steve Jessop on Is alignment union necessary for memory allocation header? Steve Jessop 2009-12-18T17:04:54Z 2009-12-18T17:04:54Z Mmm, OK. C++ spells it out for new. I'm not sure whether that C standardese is or is not intended to mean that the pointer in my example has to be 8-aligned. Clearly it's impossible to align it, or for that matter do anything else to it, so that it &quot;may be assigned to a pointer to the 8-aligned tpye and then used to access such an object in the space allocated&quot;. Alignment doesn't enter in to it, it's the access to an object larger than the allocated space that's invalid. But you're probably right, and the intent is that it be aligned. http://stackoverflow.com/questions/1908024/is-alignment-union-necessary-for-memory-allocation-header/1908598#1908598 Comment by Steve Jessop on Is alignment union necessary for memory allocation header? Steve Jessop 2009-12-17T15:53:48Z 2009-12-17T15:53:48Z ... so IIRC the solution is to act as though SIMD types aren't really built-in types (even if they are), and let the user take special measures to allocate aligned memory. Systems already have functions to allocate super-aligned memory anyway, because loaders use it to align code on cache line boundaries. http://stackoverflow.com/questions/1908024/is-alignment-union-necessary-for-memory-allocation-header/1908598#1908598 Comment by Steve Jessop on Is alignment union necessary for memory allocation header? Steve Jessop 2009-12-17T15:50:26Z 2009-12-17T15:50:26Z &quot;the C standard requires alignment for any type from pointers returned by malloc&quot;. Ish. It requires alignment for any type which fits in the allocation. So if there's an 8-aligned type, with size 8, <code>malloc(4)</code> may not be 8-aligned. I once saw an amusing public argument online between GCC and glibc. The problem was that glibc doesn't know whether the compiler uses SIMD types or not. Even if the standard could tell you the highest alignment, that wouldn't help glibc because it might be compiled without SIMD. And anyway, 16-aligning everything wastes memory. http://stackoverflow.com/questions/1919608/checking-for-null-before-pointer-usage/1921403#1921403 Comment by Steve Jessop on Checking for null before pointer usage Steve Jessop 2009-12-17T15:33:10Z 2009-12-17T15:33:10Z &quot;Just seeing the program crash isn't terribly helpful&quot; - it usually is, if you run your tests under a debugger. But depending on your platform, you might not have a debugger available. And you might not always use it even if it is there. So I think switch-on-and-offable checks, such as assert, are useful http://stackoverflow.com/questions/1919626/can-i-get-a-non-const-c-string-back-from-a-c-string/1919654#1919654 Comment by Steve Jessop on Can I get a non-const C string back from a C++ string? Steve Jessop 2009-12-17T12:06:33Z 2009-12-17T12:06:33Z Modifying the characters pointed to by p is undefined behavior - if the reason the cast is needed is because the function being called just neglected to mark its parameter const, that might be fair enough. If the reason a non-const pointer is needed is because the function being called modifies the string, then it isn't fair enough.