User jalf - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T17:29:20Z http://stackoverflow.com/feeds/user/33213 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1860983/convert-integer-to-array-c/1861086#1861086 0 Answer by jalf for convert integer to array, c++ jalf 2009-12-07T16:25:19Z 2009-12-07T16:25:19Z <p>You can't simply "convert" it. The integer is not represented in software in decimal notation. So the individual digits you want <em>don't</em> exist. They have to be computed.</p> <p>So, given an arbitrary number, how can you determine the number of ones?</p> <p>We could divide by ten, and then take the remainder: For 123, the division would give 12, and then there's a remainder of 3. So we have 3 ones. The 12 tells us what we have past the ones, so it can be our input for the next iteration. We take that, divide by 10, and get 1, and a remainder of 2. So we have 2 in the tens place, and 1 left to work with for the hundreds. Divide that by 10, which gives us zero, and a remainder of 1. So we get 1 in the hundreds place, 2 in the tens place, and 3 in the ones place. And we're done, as the last division returned zero.</p> http://stackoverflow.com/questions/1856646/is-it-allowed-to-inherit-from-a-class-in-the-std-namespace-namely-stdwstring/1859303#1859303 0 Answer by jalf for Is it allowed to inherit from a class in the std namespace (namely std::wstring)? jalf 2009-12-07T11:00:20Z 2009-12-07T11:00:20Z <p>It is possible, and legal. But it's a bad idea. The classes are not designed for inheritance, and extending them is best done without inheritance. If you are not careful when <em>using</em> the classes, you'll get undefined behavior. (The classes don't have virtual destructors)</p> <p>Moreover, it seems a bad idea to add those specific functions, since they depend on locale and encoding. You're giving the class more than one responsibility. The functionality of converting between <code>char</code> and <code>wchar_t</code> belongs elsewhere.</p> http://stackoverflow.com/questions/1853243/c-do-you-really-write-exception-safe-code/1855048#1855048 0 Answer by jalf for C++: do you (really) write exception safe code? jalf 2009-12-06T10:52:51Z 2009-12-06T10:52:51Z <p>I try my darned best to write exception-safe code, yes.</p> <p>That means I take care to keep an eye on <em>which</em> lines can throw. Not everyone can, and it is critically important to keep that in mind. The key is really to think about, and design your code to satisfy, the exception guarantees defined in the standard.</p> <p>Can this operation be written to provide the strong exception guarantee? Do I have to settle for the basic one? Which lines may throw exceptions, and how can I ensure that if they do, they don't corrupt the object?</p> http://stackoverflow.com/questions/1854302/is-assert-evil/1855040#1855040 9 Answer by jalf for Is assert evil? jalf 2009-12-06T10:48:42Z 2009-12-06T10:48:42Z <p>By that logic, breakpoints are evil too.</p> <p>Asserts should be used as a debugging aid, and nothing else. "Evil" is when you try using them <em>instead</em> of error handling.</p> <p>Asserts are there to help you, the programmer, detect and fix problems that must not exist and verify that your assumptions stay true.</p> <p>They have nothing to do with error handling, but unfortunately, some programmers abuse them as such, and then declare them "evil".</p> http://stackoverflow.com/questions/1851662/why-is-lua-so-ignored/1851691#1851691 1 Answer by jalf for Why is Lua so ignored? jalf 2009-12-05T09:22:54Z 2009-12-05T09:22:54Z <p>There's a big difference between "ignored" (I know of it, but choose not to use/discuss it), and "unknown" (What's Lua?)</p> <p>I think Lua falls in the latter camp. The reason it's not widely used on SO is that it's not a very popular language. I'm only superficially familiar with it (I've written perhaps 20 lines of Lua code in my life), and I don't really see what the fuss is about. I don't know why I'm supposed to prefer this over Python or Ruby. It seems like yet another simple dynamic language, but without the killer apps that made the former two languages popular.</p> http://stackoverflow.com/questions/1849490/c-arguments-for-exceptions-over-return-codes/1849552#1849552 3 Answer by jalf for C++ - Arguments for Exceptions over Return Codes jalf 2009-12-04T20:45:03Z 2009-12-04T20:45:03Z <p>Use what makes sense. I think both have a place. There are situations where error codes are nearly impossible to use (returning failure from a constructor, for example)</p> <p>Other times, error codes are just more convenient. They're easier to deal with in cases where you expect them to happen. Exceptions are for <em>exceptional</em> errors - the ones that aren't supposed to happen, but might do so once in a blue moon. Error codes are a lot more convenient for errors that are expected to happen regularly, and can be handled locally. Exceptions are most useful in cases where the error must be handled further up the call stack.</p> <p>Also, exceptions aren't necessarily faster in the non-exceptional case. Often, they require extra exception handling code in function prolog and epilogs which has to be executed every time the function is called, whether or not it throws an exception.</p> http://stackoverflow.com/questions/1842636/why-cannot-c-generics-derive-from-one-of-the-generic-type-parameters-like-they-c/1842742#1842742 0 Answer by jalf for Why cannot C# generics derive from one of the generic type parameters like they can in C++ templates? jalf 2009-12-03T20:35:39Z 2009-12-03T20:35:39Z <p>What would be so useful about this?</p> <p>Remember that despite the name, generics were never intended to support generic programming.</p> <p>To support a feature like this, they'd have to make some pretty dramatic changes to the CLR.</p> <p>You'd need to define a class that derives from a type that doesn't even exist at compile-time.</p> <p>Why should they jump through such hoops and pretty fundamentally compromise their type system just to add this feature? Is it worth it?</p> <p>If you think so, tell them why. Write feedback on connect.microsoft.com telling them why this feature is so fundamental that it must be added.</p> http://stackoverflow.com/questions/1832621/c-cpu-register-usage/1832643#1832643 9 Answer by jalf for C++ CPU Register Usage jalf 2009-12-02T12:34:15Z 2009-12-02T12:34:15Z <p>Yes. There is no rule that "variables are always allocated on the stack". The C++ standard says nothing about a stack.It doesn't assume that a stack exists, or that registers exist. It just says how the code should behave, not how it should be implemented.</p> <p>The compiler only stores variables on the stack when it has to - when they have to live past a function call for example, or if you try to take the address of them.</p> <p>The compiler isn't stupid. ;)</p> http://stackoverflow.com/questions/1828037/whats-the-point-of-g-wreorder/1828060#1828060 1 Answer by jalf for What's the point of g++ -Wreorder? jalf 2009-12-01T18:42:15Z 2009-12-01T18:42:15Z <p>The warning exists because if you just read the constructor, it looks like <code>j</code> is getting initialized before <code>i</code>. This becomes a problem if one is used to initialize the other, as in</p> <pre><code>struct A { int i; int j; A(): j (0), i (this-&gt;j) { } }; </code></pre> <p>When you just look at the constructor, this <em>looks</em> safe. But in reality, <code>j</code> has not yet been initialized at the point where it is used to initialize <code>i</code>, and so the code won't work as expected. Hence the warning.</p> http://stackoverflow.com/questions/1827019/when-to-use-c-vs-c-for-performance-london-stock-exchange/1827818#1827818 7 Answer by jalf for When To Use C# vs C++ For Performance (London Stock Exchange) jalf 2009-12-01T17:57:12Z 2009-12-01T17:57:12Z <p>Performance is pretty complicated. It's impossible to say in general that one language is "faster" than another. One specific version of one specific application, compiled with one specific compiler and a specific set of compiler flags, and run on one specific computer, may be faster than another. But then it is no longer a question of language vs. language, but of the entire environment.</p> <p>Managed code has the <strong>potential</strong> to be very efficient. Much of the overhead of maintaining the managed and safe environment can be optimized away, and because more invariants about the state of the environment can be guaranteed to hold, the compiler is able to perform a number of optimizations that wouldn't be possible in C++.</p> <p>On the other hand, C++ also has the <strong>potential</strong> to be very efficient. There are a number of optimizations that are tricky to perform in C++ in the general case, but there is also very little "mandatory" overhead. The language doesn't require a huge number of underlying services and processes.</p> <p>Ultimately, it comes down to little more than how much time you're willing to spend optimizing your application. In many common cases, a managed application will win out because it can be reasonably optimized in a relatively short amount of time. The language is simpler, and so modifying the code may be faster and more painless.</p> <p>However, given near unlimited developer time, you might find that a C++ application becomes faster, as the managed app eventually runs up against the limits of the managed runtime. A certain amount of CPU time <em>has</em> to be spent on the garbage collector and a number of other tasks. A certain amount of memory has to be set aside for the framework, or for the managed heap. Or just the startup time of a managed application will typically be higher than a native one, because the managed app always has to load and initialize the managed runtime, which is bigger and more complex than the C++ one. </p> <p>Moreover, defining "performance" isn't straightforward. Are we talking about the total time a process takes, from start to finish? Are we talking about startup time? Cold or warm startup, then? Are we talking about the time taken to call a given function? Or the average time taken to handle an incoming request? Or the worst-case time?</p> <p>In some cases, you need realtime guarantees. You need a guarantee that the system won't be temporarily halted, even for just a handful of milliseconds. Then garbage collection becomes a huge liability, and may make it impossible for you to satisfy this performance requirement.</p> <p>Other times, you may have a requirement that "at least 50000 requests must be serviced per second". Then it doesn't matter if one individual request gets delayed a bit, as long as we maintain good overall throughput. Then a garbage collector may be a <em>good</em> thing, because on average, it performs better than reference counting and other ad hoc techniques for memory management.</p> <p>For an interesting comparison of C++ vs .NET performance, you may want to read this series of blog posts: <a href="http://blogs.msdn.com/ricom/archive/2005/05/10/performance-quiz-6-chinese-english-dictionary-reader.aspx" rel="nofollow">http://blogs.msdn.com/ricom/archive/2005/05/10/performance-quiz-6-chinese-english-dictionary-reader.aspx</a></p> <p>Of course this is not representative of every such "C++ vs .NET" test, but it is interesting nonetheless. In short, their conclusion is that for the first many iterations, the .NET implementation easily outperformed the C++ one, and even with fewer bugs. But if you <em>really</em> pull out all the stops, and take enough time to optimize, the C++ version can eventually be made to pull ahead, as the .NET version runs up against the limitations of the managed runtime.</p> <p>And finally, let's not underestimate the human factor. The .NET version they used was written by human beings. They may not have written perfectly optimized code. It was then optimized by human beings, who may have lacked the knowledge of .NET to perform the optimizations that'd solve their performance problems.</p> <p>The decision to port to C++ was also taken by human beings. Human beings who may not even be programmers. Who may have simply been told that "if you want performance, C++ is the way to go". Not every decision is rational, or based on meaningful data.</p> <p>It is possible that they found out that they were bumping up against some limitations of .NET in their specific application. Perhaps they even got some of Microsoft's own optimization gurus out to look at it. And perhaps they all ended up concluding that the current version of .NET was unable to satisfy their requirements, and the app should be rewritten in C++.</p> <p>But it is also possible that their in-house programmers simply know C++ better than .NET. Or that, like you, they'd <em>heard</em> that one language was "faster" than another, and so when their bosses asked them to speed up the application, they said "ok, we'll have to rewrite it in a faster language then".</p> http://stackoverflow.com/questions/1821988/yield-from-c-to-c-dealing-with-containers/1823404#1823404 1 Answer by jalf for Yield from C# to C++, dealing with containers jalf 2009-12-01T01:01:07Z 2009-12-01T01:01:07Z <p>Let your class expose iterators.</p> <pre><code>class Fat { public: typedef std::vector&lt;SECT&gt;::iterator iterator; iterator begin() { return sectors.begin(); } iterator end() { return sectors.end(); } Fat(); // some code here ... private: void LoadSectors(SECT startPoint); std::vector&lt;SECT&gt;sectors; </code></pre> <p>Then the surrounding code can traverse the elements of the vector freely, through just a pair of iterators.</p> http://stackoverflow.com/questions/1818861/memory-leak-memory-allocation-in-c/1821385#1821385 0 Answer by jalf for Memory leak/Memory allocation in C++ jalf 2009-11-30T18:03:44Z 2009-11-30T18:03:44Z <p>The function defines a pointer <code>p</code>, which is set to point to the statically allocated string <code>"Test for memory leak"</code>.</p> <p>Nothing is being dynamically allocated, so nothing has to be manually freed.</p> <p>You should always pair calls to <code>new</code> and <code>delete</code>. When something is <code>new</code>'ed, it must be <code>deleted</code>, and vice versa.</p> <p>In your case, the string itself is static, and lasts until the program terminates. And <code>p</code> is a local variable on the stack, and it lasts until the function returns.</p> <p>So both of these are handled automatically by the system.</p> http://stackoverflow.com/questions/1819564/g-produces-big-binaries-despite-small-project/1820130#1820130 0 Answer by jalf for g++ produces big binaries despite small project jalf 2009-11-30T14:25:28Z 2009-11-30T14:25:28Z <p>The executable has to contain more than just your code.</p> <p>At the very least, it contains some startup code, setting up the environment and if necessary, loading any external libraries, before the program launches.</p> <p>If you've statically linked the runtime library, you also get that included in your executable. Otherwise you only get a small stub, just big enough to redirect system calls to the external runtime.</p> <p>It may, depending on compiler settings also include a lot of debugging info and other non-essential data. If optimizations are enabled, that may have increased code size as well.</p> <p>The real question is <em>why does this matter</em>? 800KB still fits easily on a floppy disk! Most of this is a one-time cost. it doesn't mean that if you write twice as much code, it'll take up 1600KB. More likely, it'll take 810KB or something like that. </p> <p>Don't worry about one-time startup costs.</p> http://stackoverflow.com/questions/1819282/how-to-draw-windows-7-taskbar-like-shaded-buttons/1819402#1819402 0 Answer by jalf for How to draw Windows 7 taskbar like Shaded Buttons jalf 2009-11-30T12:03:24Z 2009-11-30T12:03:24Z <p>I believe they're implemented as shader programs on the GPU. Just a simple program which takes the cursor position, and computes a brightness for each pixel based on the distance from that position.</p> http://stackoverflow.com/questions/1816851/hlsl-directx9-is-there-a-gettime-function-or-similar/1816917#1816917 1 Answer by jalf for HLSL DirectX9: Is there a getTime() function or similar? jalf 2009-11-29T21:56:00Z 2009-11-29T21:56:00Z <p>Nope. Shaders are essentially "one-way". The CPU can affect what's happening on the GPU (specify which shader program to run, upload textures and constants and such), but the GPU can not access anything on the CPU side of the fence. If the GPU (and your shader) needs a piece of data, it must be set by the CPU as a constant or written as a texture (or as part of the vertex data)</p> http://stackoverflow.com/questions/1815705/i-am-new-to-threads-what-does-this-compile-error-mean/1816813#1816813 0 Answer by jalf for I am new to threads, What does this compile error mean? jalf 2009-11-29T21:17:41Z 2009-11-29T21:17:41Z <p>As others have already said, the problem is that the signatures between the functions are different. Class member functions always have a "secret" extra parameter, the <code>this</code> pointer. So you can never pass a member function where a global function is expected. You can hack around this either with libraries such as Boost.Bind, or by making the function a static member of the class.</p> <p>But the simplest, and most elegant solution is to use a different threading API.</p> <p>Boost.Thread is a very nice threading library for C++ (pthreads is designed for C, and that's why it doesnt play well with C++ features such as class methods).</p> <p>I'd recommend using that.</p> <p>Your code could be rewritten as something like this:</p> <pre><code>class ClientHandler { public: ClientHandler(/* All the parameters you want to pass to the thread. Unlike pthreads you have complete type safety and can pass as many parameters to this constructor as you like */){...} void operator()() // boost.thread calls operator() to run the thread, with no parameters. (Since all parameters were passed in the constructor and saved as member variables { string reqUpdate = "91"; // Request for update string recvMSG; while (true) { sleep(5); sending(sock,reqUpdate); // send recvMSG = receiving(sock); // receive QString output(recvMSG); emit signal_chat(output, 0); // Print message to text box } } // whatever arguments you want to pass to the thread can be stored here as member variables }; boost::threead_group gr; // can store all your threads here, rather than being limited to your fixed-size array gr.create_thread(ClientHandler(/* construct a ClientHandler object with the parameters you like*/)); </code></pre> http://stackoverflow.com/questions/1815613/what-next-generation-low-level-language-is-the-best-bet-to-migrate-the-code-base/1815727#1815727 16 Answer by jalf for What next generation low level language is the best bet to migrate the code base ? jalf 2009-11-29T14:55:33Z 2009-11-29T14:55:33Z <p>C and C++ are a pretty much unbeatable combo when it comes to native/unmanaged/"lowlevel" languages.</p> <p>Not because they're the best languages, far from it, but because they're there, they do the job, and they're <em>good enough</em>. There's little doubt that D, for example, is better than C++ in most respects. But it fails in the most important one: Compatibility with all the existing C++ code. Without that requirement, most of that code would be written in a managed language today anyway. The only reason so many codebases use C++ today is because they used it last year, and it'd be too much of a pain to switch to something else. But <em>if</em> and <em>when</em> they switch, they typically don't switch to D. They switch to C# or Java or Python.</p> <p>The problem for D and other "upcoming" languages competing for the same niches, is that while they're better, they're not groundbreaking enough to motivate people to actually switch to them. </p> <p>So C and C++ are here to stay. C is unlikely to evolve much further. It is as it is, and one of the niches it has to fill is "simplicity, even for compiler writers". No other language is likely to beat it in that niche, even if they never revise the standard again.</p> <p>C++ is evolving much more dramatically, with C++0x getting nearer, and they've already got a huge list of features they want to do <em>afterwards</em>. C++ isn't a dead end in any way.</p> <p>Both languages are here to stay. Perhaps in 50 years other languages will have replaced them, but it won't happen this decade.</p> http://stackoverflow.com/questions/1815282/overhead-of-a-memory-barrier-fence/1815302#1815302 2 Answer by jalf for Overhead of a Memory Barrier / Fence jalf 2009-11-29T11:34:33Z 2009-11-29T12:47:34Z <p>Try thinking about what the instruction does. It doesn't make the CPU do anything complicated in terms of logic, but it forces it to wait until all reads and writes have been committed to main memory. So the cost really depends on the cost of accessing main memory (and the number of outstanding reads/writes).</p> <p>Accessing main memory is generally pretty expensive (10-200 clock cycles), but in a sense, that work would have to be done without the barrier as well, it could just be hidden by executing some other instructions simultaneously so you didn't feel the cost so much.</p> <p>It also limits the CPU's (and compilers) ability to reschedule instructions, so there may be an indirect cost as well in that nearby instructions can't be interleaved which might otherwise yield a more efficient execution schedule.</p> http://stackoverflow.com/questions/1812152/c-stdlib-hs-on-c-and-malloc-realloc/1812200#1812200 3 Answer by jalf for C stdlib .h's on C++ and malloc/realloc jalf 2009-11-28T10:30:40Z 2009-11-28T10:30:40Z <p>For your first question, it depends on which headers you are trying to include. Most of the C headers are available in the <code>c(lib)</code> form in the existing version of C++. A few aren't, and may be added in C++0x. So if you tried to include any of those, you might have gotten that error.</p> <p>Second, all the headers of this form <em>guarantee</em> that the functions will be made available in the <code>std</code> namespace. But they do not promise to leave the global namespace alone. Often, they put the symbols in both namespaces.</p> <p>I'm not sure why <code>::snprintf</code> bothers you more than <code>std::snprintf</code> though. You have to specify a prefix in both cases.</p> <p>As for <code>realloc</code>, a C++ equivalent doesn't exist, probably because it's more trouble than it's worth, especially with C++'s more complicated semantics for copying objects. (In particular, if you try to use it, don't store any non-POD objects in the buffer, as <code>realloc</code> will just <code>memcpy</code> them to a newly allocated buffer if necessary, which will break non-POD objects.)</p> <p>Of course, you can still use the old <code>realloc</code> from C by including its header. But I'd say you're probably better off using new/delete, and simply figuring out a sensible buffer allocation strategy.</p> http://stackoverflow.com/questions/1810313/performance-penalty-of-message-passing-as-opposed-to-shared-data/1810355#1810355 1 Answer by jalf for performance penalty of message passing as opposed to shared data jalf 2009-11-27T19:35:37Z 2009-11-27T19:41:25Z <blockquote> <p>For e.g. in a DB, you have to access and modify the same record</p> </blockquote> <p>But that is handled by the DB. As a user of the database, you simply execute your query, and the database ensures it is executed in isolation.</p> <p>As for performance, one of the most important things about eliminating shared state is that it enables new optimizations. Shared state is not particularly efficient. You get cores fighting over the same cache lines, and data has to be written through to memory where it could otherwise stay in a register or in CPU cache.</p> <p>Many compiler optimizations rely on absence of side effects and shared state as well.</p> <p>You could say that a stricter language guaranteeing these things requires more optimizations to be performant than something like C, but it also makes these optimizations much much easier for the compiler to implement.</p> <p>Many concerns similar to concurrency issues arise in singlethreaded code. Modern CPUs are pipelined, execute instructions out of order, and can run 3-4 of them per cycle. So even in a single-threaded program, it is vital that the compiler and CPU is able to determine which instructions can be interleaved and executed in parallel. </p> http://stackoverflow.com/questions/1808771/different-32bit-cast-into-long-int64-why/1808977#1808977 0 Answer by jalf for Different 32bit-cast into long/__int64, why? jalf 2009-11-27T14:06:28Z 2009-11-27T14:06:28Z <pre><code> p_aReverseIter-&gt;m_Value = static_cast&lt;unsigned int&gt;(temp &amp; 0xffffffff); carry = static_cast&lt;unsigned long&gt;(temp &gt;&gt; 32); </code></pre> <p>Don't hardcode values like these. You're not guaranteed that an <code>unsigned long</code> is any particular size (and it often won't be 64-bit as you assume). So bit shifting as well as your bitwise 'and' have to take that into account. You could replace the 32 with something like <code>sizeof(unsigned long)*8</code> perhaps. And instead of <code>0xffffffff</code>, <code>~0L</code> would do the trick, or perhaps -1 if you're feeling brave. (It'll work as long as signed ints are represented by two's complement, which is <em>usually</em> the case, but it's not guaranteed by the standard)</p> http://stackoverflow.com/questions/1808062/strcat-query-string-h/1808224#1808224 2 Answer by jalf for strcat query (string.h) jalf 2009-11-27T11:32:52Z 2009-11-27T11:32:52Z <pre><code>char str[80]; </code></pre> <p>declares an array of 80 characters. However, in C and C++, arrays are implicitly converted to pointers. When you pass an array to a function (such as strcat), it automatically "decays", forming a pointer to the first element of the array.</p> <p>That's not the same as saying that arrays and pointers are the same thing. They aren't. For example, <code>sizeof()</code> yields different results on the above array, and a <code>char*</code>.</p> http://stackoverflow.com/questions/1804359/passing-stdstring-from-vc2005-to-vc6-dll-results-in-garbage/1804460#1804460 0 Answer by jalf for Passing std::string from VC++2005 to VC++6 DLL results in garbage jalf 2009-11-26T15:51:21Z 2009-11-26T15:51:21Z <p>Don't do this. It doesn't work.</p> <p>C++ does not define a fixed ABI, so you can't in general pass non-POD types between libraries or translation units compiled by different compilers.</p> <p>In your case, VC6 and VC8 have different definitions of <code>std::string</code> (and the compilers may also insert different padding and other changes), and the result is garbage, and/or unpredictable behavior and crashes.</p> <p>If you need to pass data to a VC6 DLL (a better option might be to recompile that code under a sane compiler), you have to stick to types where you can be sure it'll work. That means 1) POD types (either built-in primitives such as <code>char*</code>, or C structs containing only POD types), or COM objects.</p> http://stackoverflow.com/questions/1788550/should-the-conditional-operator-evaluate-all-arguments/1804373#1804373 0 Answer by jalf for Should the conditional operator evaluate all arguments? jalf 2009-11-26T15:37:08Z 2009-11-26T15:37:08Z <p>You might be able to avoid the warning using the Microsoft-specific <code>__assume</code> keyword. I'm not sure if you can tie it in with the conditional operator. Otherwise something like </p> <pre><code>if (arg == 0.0){ return 0.0; } else { __assume(arg != 0.0); return 1./arg; } </code></pre> <p>may be worth a shot. Or, of course, just silence the warning during this function, with the appropriate <code>#pragma</code>.</p> http://stackoverflow.com/questions/1799733/foreach-algorithm-in-c/1803726#1803726 0 Answer by jalf for foreach algorithm in C++ jalf 2009-11-26T13:41:00Z 2009-11-26T13:41:00Z <p>You <strong>can</strong> adapt <code>std::for_each</code> to do this as GMan showed.</p> <p>But a better solution is to use the correct algorithm.</p> <p>You should be able to use <code>std::count</code> or <code>std::count_if</code>, or perhaps <code>std::accumulate</code>. These allow you to return one result for processing the entire sequence.</p> <p>Alternatively <code>std::transform</code> allows you to return a result for each element in the sequence, creating a new output sequence containing the results.</p> http://stackoverflow.com/questions/1800423/what-is-the-performance-penalty-of-operator-overloading-stl/1803143#1803143 2 Answer by jalf for What is the performance penalty of operator overloading STL jalf 2009-11-26T11:28:38Z 2009-11-26T11:28:38Z <blockquote> <p>My only concern is the performance penalty of operator overloading that is necessary to get STL working. For comparison, I think it relies that == provides the needed semantics. We need to overload ==operator if we are adding our classes to a container.</p> </blockquote> <p>It is nonexistent. Your overloaded operator is implemented as a function call. And if you didn't overload the operator, you'd need to define a function to use instead. So the performance is <strong>exactly</strong> the same, just with a cleaner syntax.</p> http://stackoverflow.com/questions/1415256/alignment-requirements-for-atomic-x86-instructions 10 alignment requirements for atomic x86 instructions jalf 2009-09-12T14:24:08Z 2009-11-25T23:01:47Z <p>Microsoft offers the <a href="http://msdn.microsoft.com/en-us/library/ms683560%28VS.85%29.aspx" rel="nofollow"><code>InterlockedCompareExchange</code></a> function for performing atomic compare-and-swap operations. There is also an <a href="http://msdn.microsoft.com/en-us/library/1s26w950.aspx" rel="nofollow"><code>_InterlockedCompareExchange</code></a> <em>intrinsic</em>.</p> <p>On x86 these are implemented using the <code>cmpxchg</code> instruction.</p> <p>However, reading through the documentation on these three approaches, they don't seem to agree on the alignment requirements.</p> <p>Intel's <a href="http://download.intel.com/design/intarch/manuals/24319101.pdf" rel="nofollow">reference manual</a> says nothing about alignment (other than that <em>if</em> alignment checking is enabled and an unaligned memory reference is made, an exception is generated)</p> <p>I also looked up the <code>lock</code> prefix, which specifically states that</p> <blockquote> <p>The integrity of the LOCK prefix is <strong>not</strong> affected by the alignment of the memory field.</p> </blockquote> <p><em>(emphasis mine)</em></p> <p>So Intel seems to say that alignment is irrelevant. The operation will be atomic no matter what.</p> <p>The <code>_InterlockedCompareExchange</code> intrinsic documentation also says nothing about alignment, however the <code>InterlockedCompareExchange</code> <em>function</em> states that</p> <blockquote> <p>The parameters for this function must be aligned on a 32-bit boundary; otherwise, the function will behave unpredictably on multiprocessor x86 systems and any non-x86 systems.</p> </blockquote> <p>So what gives? Are the alignment requirements for <code>InterlockedCompareExchange</code> just to make sure the function will work even on pre-486 CPU's where the <code>cmpxchg</code> instruction isn't available? That seems likely based on the above information, but I'd like to be sure before I rely on it. :)</p> <p>Or is alignment required by the ISA to guarantee atomicity, and I'm just looking the wrong places in Intel's reference manuals?</p> http://stackoverflow.com/questions/1789421/null-pointer-is-the-same-as-deallocating-it/1790762#1790762 2 Answer by jalf for NULL pointer is the same as deallocating it? jalf 2009-11-24T15:22:52Z 2009-11-24T15:22:52Z <pre><code>A = new MyClass(); {...do something in the meantime...} A = NULL; </code></pre> <p>The way I keep track of it is that there are two separate objects. <em>Somewhere</em> on the heap, a <code>MyClass</code> instance is allocated by <code>new</code>. And on the stack, there is a pointer named <code>A</code>.</p> <p><code>A</code> is just a pointer, there is nothing magical about out, and it doesn't have some special connection to the heap-allocated <code>MyClass</code> object. It just happens to point to that right now, but that can change.</p> <p>And on the last line, that is exactly what happens. You change the pointer to point to something else. That doesn't affect other objects. It doesn't affect the object it used to point to, and it doesn't affect the object (if any) that it is set to point to now. Again, <code>A</code> is just a dumb raw pointer like any other. It might be NULL, or it might point to an object on the stack, or it might point to an object on the heap, or it might be uninitialized and point to random garbage. But that's all it does. It points, it doesn't in any way take ownership of, or modify, the object it points to.</p> http://stackoverflow.com/questions/1790291/using-boost-on-windows-visual-studio/1790353#1790353 1 Answer by jalf for Using Boost on Windows (Visual Studio) jalf 2009-11-24T14:16:15Z 2009-11-24T14:16:15Z <blockquote> <ol> <li>Things are no longer self-contained (i.e. every team member has to install Boost, then configure Visual Studio to recognize it).</li> <li>I can't keep Boost under source control (I would ideally like it to be soure files in my source control like everything else).</li> </ol> </blockquote> <p>Before you put Boost under source control, keep in mind that the compiled libraries take up several gigabytes. (my Boost folder is around 5GB) It might be worth just letting everyone install Boost for themselves. </p> <p>Apart from this, the installer should work fine, but compiling it yourself is really trivial as well.</p> <p>Boost installs into version-specific folders by default (both if you compile it yourself and if you use the installer), so it's easy enough to have multiple versions installed side by side. So if your team upgrades Boost to a new version, you could simply change the include path in the .sln or .vsprops files to make the compiler search for the new version -- if a coworker hasn't installed the right version, he just won't be able to build (which might be preferable to silently building with an old version)</p> http://stackoverflow.com/questions/1783849/what-are-the-advantages-and-disadvantages-of-implementing-classes-in-header-files/1784229#1784229 6 Answer by jalf for What are the advantages and disadvantages of implementing classes in header files? jalf 2009-11-23T16:21:24Z 2009-11-23T16:21:24Z <p>You're not repeating yourself. You only write the code <em>once</em> in <em>one</em> header. It is repeated by the preprocessor, but that's not your problem, and it's not a violation of DRY.</p> <blockquote> <p>If it's right to do for templates, why not for normal classes</p> </blockquote> <p>It's not really that it's the <em>right</em> thing to do for templates. It's just the only one that really works in general.</p> <p>Anyway, if you implement a class in a header, you get the following advantages and disadvantages:</p> <ul> <li>The full implementation is visible anywhere it is used, which makes it easy for the compiler to inline as necessary. </li> <li>The same code will be parsed and compiled multiple times, leading to higher compile-times.</li> <li>On the other hand, if everything is in headers, that may lead to fewer translation units, and so the compiler has to run fewer times. Ultimately, you might end up with a single translation unit, which just includes everything once, which can result in very fast compilations.</li> </ul> <p>And... that's it, really.</p> <p>Most of my code tends to be in headers, but that's because most of my code is templates.</p> http://stackoverflow.com/questions/1860983/convert-integer-to-array-c/1861020#1861020 Comment by jalf on convert integer to array, c++ jalf 2009-12-07T16:21:40Z 2009-12-07T16:21:40Z how about an answer which actually explains the approach so the OP <i>learns</i> something? http://stackoverflow.com/questions/1860461/why-is-i-i-1-unspecified-behavior/1860539#1860539 Comment by jalf on Why is `i = ++i + 1` unspecified behavior? jalf 2009-12-07T15:47:29Z 2009-12-07T15:47:29Z Iirc, &quot;unspecified&quot; is basically &quot;it has to behave consistently and sanely, but compilers need not document their choice of behavior&quot;. Undefined is &quot;may blow up the universe.&quot; http://stackoverflow.com/questions/1860615/code-with-undefined-behavior-in-c/1860641#1860641 Comment by jalf on Code with undefined behavior in C# jalf 2009-12-07T15:39:30Z 2009-12-07T15:39:30Z That's just nondeterministic, not undefined. You're still given a guarantee of exactly what each thread will be doing. You just don't know the exact order in which things happen, and so you might get some surprising results. http://stackoverflow.com/questions/1860404/a-c-library-for-arrays Comment by jalf on A C++ library for Arrays jalf 2009-12-07T14:59:45Z 2009-12-07T14:59:45Z what's wrong with something like clapack? (or why is it too &quot;blunt&quot;?) It's not really clear what it is you're looking for. http://stackoverflow.com/questions/1860404/a-c-library-for-arrays Comment by jalf on A C++ library for Arrays jalf 2009-12-07T14:54:45Z 2009-12-07T14:54:45Z Why would you want &quot;basic matrix operations&quot; for arrays? Perhaps your question should be about <i>matrix</i> classes then. http://stackoverflow.com/questions/1851662/why-is-lua-so-ignored/1851708#1851708 Comment by jalf on Why is Lua so ignored? jalf 2009-12-07T14:41:01Z 2009-12-07T14:41:01Z And I'm not talking about web developers. Whipping up a PHP page isn't rocket science, but there are other fields in programming that are every bit as complex as games. Anyway, if you were to look at the program for GDC or other similar conferences, I think you'd find that the whole &quot;agile&quot; thing is only just starting to become known in game development. About a decade after everyone else. What &quot;great&quot; practices in game development do you know of? http://stackoverflow.com/questions/1851662/why-is-lua-so-ignored/1851708#1851708 Comment by jalf on Why is Lua so ignored? jalf 2009-12-07T14:39:49Z 2009-12-07T14:39:49Z @reinier: No. I don't think they can get their games out of the door in time. In case you hadn't noticed, big games are very often delayed, or released in a half-finished buggy state. In case you hadn't noticed, the games industry is infamous for 60 or 80-hours work weeks. In case you hadn't noticed, a huge number of game programmers burn out within 5 or so years. It is not &quot;great development methodologies&quot; that allow games to be made. It's sheer brute force. No, I'm not joking. http://stackoverflow.com/questions/1497063/reversing-strings-in-a-vector-using-foreach-and-bind Comment by jalf on Reversing strings in a vector using for_each and bind jalf 2009-12-07T14:29:21Z 2009-12-07T14:29:21Z added stl-algorithms instead :) http://stackoverflow.com/questions/1853320/10-character-id-thats-globally-and-locally-unique/1853605#1853605 Comment by jalf on 10 character id that's globally and locally unique jalf 2009-12-07T12:11:58Z 2009-12-07T12:11:58Z GUID's are only globally unique as long as everyone agrees on the algorithms used to generate them. The OP sounds like everyone might mash up their own ad hoc algorithm to generate something that's supposed to be &quot;globally unique&quot;, which means it's going to fall over. http://stackoverflow.com/questions/1858639/shall-i-place-try-catch-block-in-destructor-if-i-know-my-function-wont-throw/1858661#1858661 Comment by jalf on Shall I place try...catch block in destructor, if I know my function won't throw exception. jalf 2009-12-07T12:04:46Z 2009-12-07T12:04:46Z &quot;exception safety purists&quot; should <i>know</i> which code can throw exceptions. There is nothing &quot;pure&quot; about blindly putting try/catch everywhere http://stackoverflow.com/questions/1857668/c-visual-studio-character-encoding-issues Comment by jalf on C++ Visual Studio character encoding issues jalf 2009-12-07T11:32:02Z 2009-12-07T11:32:02Z Why aren't you using wide strings? That's how Windows implements Unicode support http://stackoverflow.com/questions/1855441/cos-returns-wrong-values Comment by jalf on cos returns wrong values? jalf 2009-12-06T17:22:11Z 2009-12-06T17:22:11Z So which value did you expect? Are you expecting it to use radians or degrees? http://stackoverflow.com/questions/247538/which-standard-c-classes-cannot-be-reimplemented-in-c/247580#247580 Comment by jalf on Which standard c++ classes cannot be reimplemented in c++? jalf 2009-12-06T17:08:56Z 2009-12-06T17:08:56Z printf/cout don't need access to the OS. The standard says pretty much nothing about what those streams must be connected to. I'm pretty sure the meaning of &quot;standard output&quot; is implementation-defined. So you could write a compliant implementation of printf which just threw away its output. http://stackoverflow.com/questions/1854302/is-assert-evil/1854326#1854326 Comment by jalf on Is assert evil? jalf 2009-12-06T16:47:04Z 2009-12-06T16:47:04Z <i>Usually</i>, a nicer solution is to factor it out into a separate function, from which you can return directly - rather than <code>goto</code>'ing out of the loops. But yes, it is a common argument from the &quot;goto isn't evil just misunderstood&quot; brigade. Personally I'd rather say &quot;goto isn't evil, just useless&quot;. http://stackoverflow.com/questions/280624/which-is-faster-c-unsafe-code-or-raw-c/280650#280650 Comment by jalf on Which is faster - C# unsafe code or raw C++ jalf 2009-12-06T16:35:36Z 2009-12-06T16:35:36Z @Eloff: Certainly. But the reality is also that <b>other</b> algorithms run faster when you write them <i>without</i> using pointers, as the compiler dodges all the nasty, performance-crippling aliasing. Or why do you think Fortran is used instead of C/C++ for high-performance scientific computing? ;)