User quant_dev - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T23:04:12Z http://stackoverflow.com/feeds/user/59557 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1773897/why-is-argc-an-int-rather-than-an-unsigned-int/1773902#1773902 1 Answer by quant_dev for Why is argc an 'int' (rather than an 'unsigned int')? quant_dev 2009-11-20T23:43:31Z 2009-11-20T23:43:31Z <p>I suppose it is designed to be compatible with C, and in C times people didn't really care that much about signed/unsigned correctness.</p> http://stackoverflow.com/questions/1696551/how-to-get-the-name-of-the-calling-class-in-java/1696567#1696567 0 Answer by quant_dev for How to get the name of the calling class in Java? quant_dev 2009-11-08T13:35:59Z 2009-11-08T13:35:59Z <p>From a stack trace: <a href="http://www.javaworld.com/javaworld/javatips/jw-javatip124.html" rel="nofollow">http://www.javaworld.com/javaworld/javatips/jw-javatip124.html</a></p> http://stackoverflow.com/questions/434657/java-double-value-comparison/1657983#1657983 0 Answer by quant_dev for Java: Double Value Comparison quant_dev 2009-11-01T18:56:12Z 2009-11-01T18:56:12Z <p>If you don't care about the edge cases, then just test for <code>someAmount &lt;= 0</code>. It makes the intent of the code clear. If you do care, well... it depends on how you calculate <code>someAmount</code> and why you're testing for the inequality.</p> http://stackoverflow.com/questions/1257299/why-use-the-c-class-system-random-at-all-instead-of-system-security-cryptography/1620433#1620433 0 Answer by quant_dev for Why use the C# class System.Random at all instead of System.Security.Cryptography.RandomNumberGenerator? quant_dev 2009-10-25T09:09:53Z 2009-10-25T09:09:53Z <p>Different needs call for different RNGs. For crypto, you want your random numbers to be as random as possible. For Monte Carlo simulations, you want them to fill the space evenly and to be able to start the RNG from a known state.</p> http://stackoverflow.com/questions/1584835/in-what-order-do-c-objects-passed-as-arguments-to-constructors-of-other-objects 0 In what order do C++ objects passed as arguments to constructors of other objects go out of scope? quant_dev 2009-10-18T13:03:12Z 2009-10-20T00:37:42Z <p>When I compile the following code with g++, the object of class A seems not to be destructed when the object of class C is constructed, and the B.ref_a reference is not broken when accessed by the constructor of object of class C:</p> <pre><code>#include &lt;iostream&gt; struct A { A(int aa) { a = aa; } ~A() { std::cout &lt;&lt; "A out" &lt;&lt; std::endl; } int a; }; struct B { B(const A&amp; a) : ref_a(a) { } ~B() { std::cout &lt;&lt; "B out" &lt;&lt; std::endl; } const A&amp; ref_a; }; struct C { C(const B&amp; b) { c = b.ref_a.a + 1; } int c; }; int main(void) { C c(B(A(1))); std::cout &lt;&lt; c.c &lt;&lt; std::endl; } </code></pre> <p>However, is it guaranteed by the C++ language?</p> http://stackoverflow.com/questions/1428928/array-access-optimization/1429050#1429050 2 Answer by quant_dev for Array access optimization quant_dev 2009-09-15T19:01:36Z 2009-09-15T21:46:46Z <p>Any solution you try needs to be tested in controlled conditions resembling as much as possible the production conditions. Because of the nature of Java, you need to exercise your code a bit to get reliable performance stats, but I'm sure you know that already.</p> <p>This said, there are several things you may try, which I've used to optimize my Java code with success (<strong>but not on Android JVM</strong>)</p> <pre><code>for(int y=0;y&lt;10;y++){ for(int x=0;x&lt;10;x++){ if(array[x][y]!=null) //perform task here } } </code></pre> <p>should in any case be reworked into</p> <pre><code>for(int x=0;x&lt;10;x++){ for(int y=0;y&lt;10;y++){ if(array[x][y]!=null) //perform task here } } </code></pre> <p>Often you will get performance improvement from caching the row reference. Let as assume the array is of the type <code>Foo[][]</code>:</p> <pre><code>for(int x=0;x&lt;10;x++){ final Foo[] row = array[x]; for(int y=0;y&lt;10;y++){ if(row[y]!=null) //perform task here } } </code></pre> <p>Using <code>final</code> with variables was supposed to help the JVM optimize the code, but I think that modern JIT Java compilers can in many cases figure out on their own whether the variable is changed in the code or not. On the other hand, sometimes this may be more efficient, although takes us definitely into the realm of microoptimizations:</p> <pre><code>Foo[] row; for(int x=0;x&lt;10;x++){ row = array[x]; for(int y=0;y&lt;10;y++){ if(row[y]!=null) //perform task here } } </code></pre> <p>If you don't need to know the element's indices in order to perform the task on it, you can write this as</p> <pre><code>for(final Foo[] row: array){ for(final Foo elem: row if(elem!=null) //perform task here } } </code></pre> <p>Another thing you may try is to flatten the array and store the elements in <code>Foo[]</code> array, ensuring maximum locality of reference. You have no inner loop to worry about, but you need to do some index arithmetic when referencing particular array elements (as opposed to looping over the whole array). Depending on how often you do it, it may or not be beneficial.</p> <p>Since most of the elements will be not-null, keeping them as a sparse array is not beneficial for you, as you lose locality of reference.</p> <p>Another problem is the null test. The null test itself doesn't cost much, but the conditional statement following it does, as you get a branch in the code and lose time on wrong branch predictions. What you can do is to use a "null object", on which the task will be possible to perform but will amount to a non-op or something equally benign. Depending on the task you want to perform, it may or may not work for you.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/1414654/how-to-break-circle-of-evening-stupidity/1414683#1414683 1 Answer by quant_dev for How to break circle of evening stupidity? quant_dev 2009-09-12T09:00:29Z 2009-09-12T09:00:29Z <p>Leave work at normal hours, drink plenty of water, do physical exercises and sleep as much as you need.</p> http://stackoverflow.com/questions/1396575/detecting-if-two-number-ranges-clash/1396586#1396586 1 Answer by quant_dev for Detecting if two number ranges clash quant_dev 2009-09-08T22:07:05Z 2009-09-08T23:41:38Z <p>The ranges DO NOT clash if and only if $a2 &lt;= $b1 or $a1 >= $b2 (assuming that ranges are given as ordered pairs). Now negate the condition.</p> http://stackoverflow.com/questions/1396568/does-removing-comments-improve-code-performance-javascript/1396594#1396594 0 Answer by quant_dev for Does removing comments improve code performance? JavaScript. quant_dev 2009-09-08T22:08:35Z 2009-09-08T22:08:35Z <p>Another issue is that comments of the sort "This code is crap but we must meed the deadline" may not look as good in customer's browser.</p> http://stackoverflow.com/questions/1384919/are-there-libraries-for-square-root-over-bigdecimal/1386371#1386371 0 Answer by quant_dev for Are there libraries for Square Root over BigDecimal? quant_dev 2009-09-06T18:43:17Z 2009-09-06T18:43:17Z <p>(This is may not be a solution for you)</p> <p>As long as your BigDecimal is in the range of double, you can convert the BigDecimal to double, use Math.sqrt() and promote the double back to BigDecimal. It will probably be faster than carrying out the calculation on BigDecimals. In many cases the loss of precision due to conversion between types will be negligible compared to the inevitable error in computing the square root.</p> http://stackoverflow.com/questions/457020/how-lean-do-my-c-exception-classes-really-need-to-be/1385636#1385636 -1 Answer by quant_dev for How lean do my C++ exception classes really need to be? quant_dev 2009-09-06T13:08:08Z 2009-09-06T14:39:18Z <p>I think refusing to use std::string in exception classes is unnecessary purism. Yes, it can throw. So what? If your implementation of std::string throws <em>for reasons other than running out of memory</em> just because you're constructing a message "Unable to parse file Foo", then there is something wrong with the implementation, not with your code. </p> <p>As for running out of memory, you have this problem even when you construct an exception which takes no string arguments. Adding 20 bytes of helpful error message is unlikely to make or break things. In a desktop app, most OOM errors happen when you try to allocate 20 GB of memory by mistake, not because you've been happily running at 99.9999% capacity and something tipped you over the top.</p> http://stackoverflow.com/questions/1111225/does-offering-financial-bonuses-help-or-hurt-morale/1383715#1383715 0 Answer by quant_dev for Does offering financial bonuses help or hurt morale? quant_dev 2009-09-05T16:30:50Z 2009-09-05T16:30:50Z <p>It depends. I work in the industry where large bonuses are norm. It is the lack of them which would hurt morale.</p> http://stackoverflow.com/questions/1381433/alternatives-to-the-gnu-scientific-library/1381662#1381662 2 Answer by quant_dev for Alternatives to the GNU Scientific Library quant_dev 2009-09-04T21:35:42Z 2009-09-04T21:35:42Z <p>Take a look at <a href="http://www.netlib.org/" rel="nofollow" title="Netlib">Netlib</a></p> http://stackoverflow.com/questions/482293/what-non-programming-specific-formulas-and-laws-do-you-use-the-most/1381117#1381117 1 Answer by quant_dev for What non-programming-specific formulas and laws do you use the most? quant_dev 2009-09-04T19:28:50Z 2009-09-04T19:28:50Z <p>Gaussian integrals</p> <p><img src="http://mathurl.com/mdkk79.png" alt="alt text" /></p> <p>and stuff of the sort</p> <p><img src="http://mathurl.com/kufagx.png" alt="alt text" title="Log-normal process" /></p> <p>which corresponds to the law</p> <p><img src="http://mathurl.com/nvhxb9.png" alt="alt text" title="Log-normal SDE" /></p> <p>Also,</p> <p><img src="http://mathurl.com/n2k86w.png" alt="alt text" title="Formula that killed Wall Street" /></p> http://stackoverflow.com/questions/1352875/naming-convention-for-a-variable-that-works-like-a-constant/1353512#1353512 1 Answer by quant_dev for Naming convention for a variable that works like a constant quant_dev 2009-08-30T09:43:04Z 2009-08-30T09:43:04Z <p>Encapsulate it.</p> <pre><code>#include &lt;iostream&gt; class ParamFoo { public: static void initializeAtStartup(double x); static double getFoo(); private: static double foo_; }; double ParamFoo::foo_; void ParamFoo::initializeAtStartup(double x) { foo_ = x; } double ParamFoo::getFoo() { return foo_; } int main(void) { ParamFoo::initializeAtStartup(0.4); std::cout &lt;&lt; ParamFoo::getFoo() &lt;&lt; std::endl; } </code></pre> <p>This should make it pretty clear that you shouldn't be setting this value anywhere else but at the startup of the application. If you want added protection, you can add some private guard <code>boolean</code> variable to throw an exception if <code>initializeAtStartup</code> is called more than once.</p> http://stackoverflow.com/questions/944293/monte-carlo-simulation-in-forecasting/1352257#1352257 0 Answer by quant_dev for Monte Carlo simulation in forecasting? quant_dev 2009-08-29T20:08:47Z 2009-08-29T20:08:47Z <p>This book is a classic: <a href="http://rads.stackoverflow.com/amzn/click/047149741X" rel="nofollow">http://www.amazon.com/Monte-Carlo-Methods-Finance-Jaeckel/dp/047149741X</a></p> http://stackoverflow.com/questions/1318770/impressive-examples-in-java/1318784#1318784 1 Answer by quant_dev for Impressive examples in Java? quant_dev 2009-08-23T15:09:11Z 2009-08-23T15:09:11Z <p>I think that the most impressive things in Java is the ease and speed with which you can develop things, while at the same time not sliding into writing unstructured, disorganized code.</p> <p>Among particular features, you can show them generics, reflection (warn them about its perils though), or the portability of Java code.</p> http://stackoverflow.com/questions/1273295/java-faq-equivalent-of-c-faq-lite/1274511#1274511 0 Answer by quant_dev for Java FAQ equivalent of C++ FAQ lite? quant_dev 2009-08-13T20:53:18Z 2009-08-13T20:53:18Z <p>There is <a href="http://www.cafeaulait.org/javafaq.html" rel="nofollow">http://www.cafeaulait.org/javafaq.html</a> but it is quite old.</p> http://stackoverflow.com/questions/1237669/how-to-force-an-order-of-cell-evaluation-on-excel 1 How to force an order of cell evaluation on Excel quant_dev 2009-08-06T08:42:03Z 2009-08-06T14:50:19Z <p>I am using a custom Excel addin which exports several functions to Excel which do a lot of "behind the scenes" work. I want to force Excel to evaluate calls to these functions in a particular order. That is, if</p> <p>A1 = AddinFunction("Foo")</p> <p>and </p> <p>B3 = AnotherAddinFunction("Bar")</p> <p>then I want to force Excel to evaluate A1 before B3. How can I achieve that with mininum hacking, and preferably without using VBA?</p> http://stackoverflow.com/questions/1133265/why-arent-more-applications-written-in-multiple-languages/1134393#1134393 0 Answer by quant_dev for Why aren't more applications written in multiple languages? quant_dev 2009-07-15T22:07:30Z 2009-07-15T22:07:30Z <p>In my home projects, I call Fortran procedures from C, or C procedures from C++.</p> <p>In my work code, we mix Java with a bit of C.</p> <p>It still happens, but people try to avoid it, for good reasons.</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/1117951#1117951 1 Answer by quant_dev for What are five things you hate about your favorite language? quant_dev 2009-07-13T06:32:59Z 2009-07-13T06:32:59Z <p><strong>C++</strong> lack of good refactoring tools, lack of checked exceptions</p> <p><strong>Java</strong> lack of templates, lack of <code>const</code> keyword</p> http://stackoverflow.com/questions/1102986/most-powerful-examples-of-unix-commands-or-scripts-every-programmer-should-know/1117937#1117937 1 Answer by quant_dev for Most powerful examples of Unix commands or scripts every programmer should know quant_dev 2009-07-13T06:26:06Z 2009-07-13T06:26:06Z <p><strong>How to exit VI</strong></p> <p>:wq</p> <p>Saves the file and ends the misery.</p> http://stackoverflow.com/questions/1115633/should-i-use-std-and-boost-prefixes-everywhere 5 Should I use std:: and boost:: prefixes everywhere? quant_dev 2009-07-12T09:27:49Z 2009-07-12T20:10:13Z <p>In my C++ code I don't use the declarations <code>using namespace std;</code> or <code>using namespace boost;</code>. This makes my code longer and means more typing. I was thinking about starting to use the "using" declarations, but I remember some people arguing against that. What is the recommended practice? std and boost are so common there should be no much harm in that?</p> http://stackoverflow.com/questions/156614/what-book-resource-would-you-recommend-for-learning-non-oop-design/1115696#1115696 1 Answer by quant_dev for What book/resource would you recommend for learning non-OOP design? quant_dev 2009-07-12T10:04:27Z 2009-07-12T10:04:27Z <p>You should read about generic programming (aka "stuff with templates"). It is non-OO in the sense that it doesn't enforce any hierarchy of objects, in fact it doesn't require the concept of an object.</p> <p>Functional programming, I believe, is something which can live on top of OO, not something you'd use instead of OO.</p> http://stackoverflow.com/questions/1115474/c-tr1-vs-gsl-vs-boost-for-statistical-distributions/1115611#1115611 2 Answer by quant_dev for C++: TR1 vs GSL vs Boost for statistical distributions? quant_dev 2009-07-12T08:54:58Z 2009-07-12T08:54:58Z <p>Mersenne twister gives uniformly distributed numbers. There are two common approaches to generating normally distributed numbers from them:</p> <ol> <li><p><a href="http://en.wikipedia.org/wiki/Box-Muller%5Fmethod" rel="nofollow">Box-Muller transform</a></p></li> <li><p><a href="http://seehuhn.de/pages/ziggurat" rel="nofollow">Ziggurat method</a></p></li> </ol> <p>In my experience, the Ziggurat is 2x faster in Java, because it calls slow log/exp functions much less often than Box-Muller. I don't know how it is in C++.</p> http://stackoverflow.com/questions/1112697/setting-up-a-new-java-development-shop/1113771#1113771 1 Answer by quant_dev for Setting up a new Java development shop quant_dev 2009-07-11T14:04:44Z 2009-07-11T14:04:44Z <p>For starters, SVN will be enough for you. Definitely get a bugtracker. JIRA is good but isn't free. Enforce a rule "No commits without a bugtrecker ticket". This way you will be able to track the development. Do a cruise control and run a build + unit tests after every checkin into the main branch. Bigger changes should be made on a separate branch and then merged into the main branch. </p> <p>Invest in a good IDE (I recommend intelliJ IDEA) and a good profiler (I recommend JProfiler). They're not free, but they are definitely worth their price.</p> http://stackoverflow.com/questions/1113214/c-development-for-linux-on-windows/1113230#1113230 6 Answer by quant_dev for C++ development for Linux on Windows quant_dev 2009-07-11T08:17:15Z 2009-07-11T08:17:15Z <p>You can also try <a href="http://cygwin.com/" rel="nofollow">http://cygwin.com/</a></p> http://stackoverflow.com/questions/1112030/how-do-you-deal-with-bad-programmers/1112273#1112273 1 Answer by quant_dev for How do you deal with bad programmers? quant_dev 2009-07-10T22:23:14Z 2009-07-10T22:23:14Z <p>I think your biggest problem is the group 4. Basically, if they don't care about their job, they don't need it. Get rid of the laziest ones if you can, firing 1 or 2 people would probably improve the attitude of the rest <strong>but they must understand why these guys have been canned</strong>. Tolerating people who are lazy and ignore their job duties demoralizes the whole group.</p> <p>I wouldn't worry about 1. much. Java is easy to learn. Get them some books about Java, or at least point them to <a href="http://www.mindview.net/Books/TIJ/" rel="nofollow">http://www.mindview.net/Books/TIJ/</a></p> <p>You can teach them the basics of OO relatively quickly. The difficult part of OO is the design. You will have to sit with them and hold their hands or present them with a ready-made design, in very clear and strict form (specs with class diagrams). As they progress, they will need your help less and less. I would try very hard to get at least one more competent person in the group and appoint them a mentor to share the load with you. It would be very good if this person was actually smarter than you. You will have to do a lot of designing for the little ones and having another person at least at your level will do you good.</p> <p>Group 3. can be a problem, if somebody's dumb there is little you can do about it. See my advice about 4.</p> http://stackoverflow.com/questions/1111376/how-to-do-unit-testing-of-methods-involving-file-input-output/1111418#1111418 4 Answer by quant_dev for How-to do unit-testing of methods involving file input output? quant_dev 2009-07-10T19:08:44Z 2009-07-10T19:08:44Z <p>I would go for short sample test files. They can be checked into source control along with the test code. The reason I would do it is that the intent of your function is to load a file, so this is what you should be testing.</p> http://stackoverflow.com/questions/1107990/scope-arrays-and-the-heap/1108060#1108060 1 Answer by quant_dev for Scope, arrays, and the heap quant_dev 2009-07-10T06:51:39Z 2009-07-10T06:51:39Z <p>I'm not sure if I got right what you want to do, but in case you want to return a reference to an int array which will be valid after <code>randomFunction</code> returns, a good way to do it is with Boost:</p> <pre><code>#include &lt;boost/shared_ptr.hpp&gt; #include &lt;vector&gt; boost::shared_ptr&lt;std::vector&lt;int&gt; &gt; randomFunction(int x, int y, int width, int height) { boost::shared_ptr&lt;std::vector&lt;int&gt; &gt; blahPtr(new std::vector&lt;int&gt;(4)); (*blahPtr)[0] = x; (*blahPtr)[1] = y; (*blahPtr)[2] = width; (*blahPtr)[3] = height; return blahPtr; } </code></pre> <p>You don't have to remember about <code>delete</code>ing <code>blahPtr</code> -- when all copies of it go out of scope, Boost will delete your <code>std::vector</code> object automatically, and C++ standard library will delete the underlying array.</p> http://stackoverflow.com/questions/520965/totally-sweet-horizontal-rules-in-latex Comment by quant_dev on Totally Sweet Horizontal Rules in LaTeX quant_dev 2009-12-07T10:15:50Z 2009-12-07T10:15:50Z \usepackage{totallysweetrules} http://stackoverflow.com/questions/1412483/how-to-train-junior-programmers-in-code-review Comment by quant_dev on How to train junior programmers in code review? quant_dev 2009-11-27T09:46:00Z 2009-11-27T09:46:00Z OVERTONE, hitting him will get you fired and possibly sentenced to jail/damages payments. http://stackoverflow.com/questions/1412483/how-to-train-junior-programmers-in-code-review Comment by quant_dev on How to train junior programmers in code review? quant_dev 2009-11-22T14:22:52Z 2009-11-22T14:22:52Z Do it US style: waterboarding. http://stackoverflow.com/questions/58640/great-programming-quotes/1254220#1254220 Comment by quant_dev on Great programming quotes quant_dev 2009-11-21T23:16:59Z 2009-11-21T23:16:59Z +1 for a quote from a great book. http://stackoverflow.com/questions/58640/great-programming-quotes/170675#170675 Comment by quant_dev on Great programming quotes quant_dev 2009-11-21T23:15:22Z 2009-11-21T23:15:22Z Yeah, java.util.Date should be buried. No -- burned, dissolved in acid and ejected into outer space. http://stackoverflow.com/questions/58640/great-programming-quotes/61467#61467 Comment by quant_dev on Great programming quotes quant_dev 2009-11-21T23:12:57Z 2009-11-21T23:12:57Z It applies to the Java system I work on, too ;-) http://stackoverflow.com/questions/1773897/why-is-argc-an-int-rather-than-an-unsigned-int/1773902#1773902 Comment by quant_dev on Why is argc an 'int' (rather than an 'unsigned int')? quant_dev 2009-11-21T19:44:36Z 2009-11-21T19:44:36Z The times when C ruled are over, and that's what I meant. http://stackoverflow.com/questions/948549/open-source-java-profilers/948559#948559 Comment by quant_dev on Open Source Java Profilers quant_dev 2009-11-01T19:00:23Z 2009-11-01T19:00:23Z I've never been able to set TPTP up. Perhaps I'm too dumb to use it. http://stackoverflow.com/questions/434657/java-double-value-comparison/434669#434669 Comment by quant_dev on Java: Double Value Comparison quant_dev 2009-11-01T18:53:46Z 2009-11-01T18:53:46Z @KG I disagree. <a href="http://quantdev.blog.co.uk/2009/09/08/the-myth-of-bigdecimal-6919916/" rel="nofollow">quantdev.blog.co.uk/2009/09/&hellip;</a> http://stackoverflow.com/questions/1257299/why-use-the-c-class-system-random-at-all-instead-of-system-security-cryptography/1257509#1257509 Comment by quant_dev on Why use the C# class System.Random at all instead of System.Security.Cryptography.RandomNumberGenerator? quant_dev 2009-10-25T09:05:56Z 2009-10-25T09:05:56Z System time is not an entropy source, because it's predictable. I'm not sure about the number of free bytes, but I doubt it's a high-quality entropy source either. By sending more requests to the server, the attacker can cause the number of free bytes to decrease, making it partially deterministic. You application becomes an attack vector because by depleting the entropy pool, it forces the other, security-critical application to use less-random random numbers -- or wait until the entropy source is replenished. http://stackoverflow.com/questions/1584836/are-functional-languages-really-worth-the-trouble-of-the-mindshift/1584847#1584847 Comment by quant_dev on Are functional languages really worth the trouble of the mindshift? quant_dev 2009-10-20T19:14:36Z 2009-10-20T19:14:36Z My development job is centred around an Excel addin ;-) http://stackoverflow.com/questions/1584835/in-what-order-do-c-objects-passed-as-arguments-to-constructors-of-other-objects Comment by quant_dev on In what order do C++ objects passed as arguments to constructors of other objects go out of scope? quant_dev 2009-10-20T00:38:36Z 2009-10-20T00:38:36Z I have clarified the question. I was using G++ 4.3.x. Thanks. http://stackoverflow.com/questions/1584836/are-functional-languages-really-worth-the-trouble-of-the-mindshift/1584847#1584847 Comment by quant_dev on Are functional languages really worth the trouble of the mindshift? quant_dev 2009-10-18T13:15:51Z 2009-10-18T13:15:51Z Well, not exactly. An Excel spreadsheet is rather a functional program which gets re-run partially or completely when you change one of the inputs. There may be some edge cases when thinking about this in such a way doesn't work, but it usually does. http://stackoverflow.com/questions/1584835/in-what-order-do-c-objects-passed-as-arguments-to-constructors-of-other-objects/1584851#1584851 Comment by quant_dev on In what order do C++ objects passed as arguments to constructors of other objects go out of scope? quant_dev 2009-10-18T13:13:31Z 2009-10-18T13:13:31Z Why doesn't it doesn't work for non-const references? http://stackoverflow.com/questions/1584835/in-what-order-do-c-objects-passed-as-arguments-to-constructors-of-other-objects/1584856#1584856 Comment by quant_dev on In what order do C++ objects passed as arguments to constructors of other objects go out of scope? quant_dev 2009-10-18T13:12:21Z 2009-10-18T13:12:21Z Hmm, I don't know which answer should I accept :)