User David Pierre - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T19:10:07Z http://stackoverflow.com/feeds/user/18296 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1687932/documentum-instruction/1687978#1687978 4 Answer by David Pierre for documentum instruction David Pierre 2009-11-06T14:31:04Z 2009-11-06T14:31:04Z <p>You can safely replace it in Java with</p> <pre><code>IDfQuery query = new DfQuery(); </code></pre> <p>That approach with a factory method comes the old Docbasic days which got constrained by what COM can or cannot do </p> http://stackoverflow.com/questions/1679669/data-structure-that-stores-unique-elements-but-answers-queries-for-another-orderi/1679743#1679743 1 Answer by David Pierre for Data-structure that stores unique elements but answers queries for another ordering in C++ David Pierre 2009-11-05T10:48:44Z 2009-11-05T10:48:44Z <p>What you want can be achieved using the library <a href="http://www.boost.org/doc/libs/1%5F40%5F0/libs/multi%5Findex/doc/index.html" rel="nofollow">Boost.Multi-index</a> </p> <p>Check in particular <a href="http://www.boost.org/doc/libs/1%5F40%5F0/libs/multi%5Findex/doc/tutorial/basics.html#multiple%5Fsort" rel="nofollow">this example </a> in the tutorial, which is very close to your use case.</p> http://stackoverflow.com/questions/1650652/changing-editor-tab-width-in-eclipse-3-5/1650675#1650675 0 Answer by David Pierre for Changing editor tab width in eclipse 3.5 David Pierre 2009-10-30T15:58:18Z 2009-10-30T15:58:18Z <p>This setting is superseded for Java by the setting from the Code Style Formatter.</p> <p>It can be found in Java / Code Style / Formatter (click Edit) / Indentation tab / Indentation</p> http://stackoverflow.com/questions/1638011/java-memory-leak/1638081#1638081 0 Answer by David Pierre for Java memory leak David Pierre 2009-10-28T15:39:43Z 2009-10-28T15:39:43Z <p>I have never used it myself, but you may find <a href="http://dev.eclipse.org/blogs/memoryanalyzer/2008/05/27/automated-heap-dump-analysis-finding-memory-leaks-with-one-click/" rel="nofollow">this link</a> helpful.</p> http://stackoverflow.com/questions/1492767/scala-in-java-code-colon/1492806#1492806 11 Answer by David Pierre for Scala in java code : $colon David Pierre 2009-09-29T14:11:18Z 2009-10-01T09:39:46Z <p>$colon is a mangling for the symbol :. Since : (and other letters) is an illegal letter in java for method names but allowed in scala, a strategy is needed to encode it into a legal name. Hence, the $colon</p> <p>Here your code translate to arg :: Nil which adds arg to the empty list, constructing a List with arg as single element.</p> http://stackoverflow.com/questions/1477301/how-to-remove-subversive-action-in-synchronize-view/1478238#1478238 0 Answer by David Pierre for How to remove subversive action in Synchronize view ? David Pierre 2009-09-25T16:14:16Z 2009-09-25T16:14:16Z <p>Why would you need to do that ? Can't you simply make it that your users don't have the right to commit using svn rights ?</p> http://stackoverflow.com/questions/1389230/which-documentum-apis-should-i-use/1459227#1459227 2 Answer by David Pierre for Which Documentum APIs should I use? David Pierre 2009-09-22T10:15:23Z 2009-09-22T10:15:23Z <ul> <li>WDK is for making websites.</li> <li>DMCL is an old api for communaticating with Documentum, in last versions it's only presentas an emulation layer, so it should be avoided.</li> <li>DFC is the preferred API to interact with Documentum, provides all functionality.</li> <li>DFS is for using Documentum from webservices.</li> <li>DQL is for querying, it's SQL-like.</li> </ul> <p>DFC and WDK are Java, the others are probably usable from .Net</p> http://stackoverflow.com/questions/1044448/why-does-boostvariant-not-provide-operator/1044493#1044493 1 Answer by David Pierre for Why does boost::variant not provide operator != David Pierre 2009-06-25T15:09:35Z 2009-06-25T15:09:35Z <p>Because it doesn't need to.</p> <p>Boost has an <a href="http://www.boost.org/doc/libs/1%5F39%5F0/libs/utility/operators.htm" rel="nofollow">operators library</a> which defines operator!= in term of operator== </p> http://stackoverflow.com/questions/363768/disable-dtd-warning-for-ant-scripts-in-eclipse/483260#483260 8 Answer by David Pierre for Disable DTD warning for ant scripts in eclipse? David Pierre 2009-01-27T12:41:23Z 2009-01-27T12:41:23Z <p>The simplest is to supply a minimal DTD to shut it up.</p> <pre><code>&lt;!DOCTYPE project&gt; for ant files </code></pre> http://stackoverflow.com/questions/301959/vector-iterator-not-dereferencable/301990#301990 6 Answer by David Pierre for Vector iterator not dereferencable David Pierre 2008-11-19T14:16:34Z 2008-11-20T11:48:02Z <p>Simple :</p> <ul> <li>find fails since your newly created Circle can't be found in the vector with comparing Shape *</li> <li>a failed find returns the end iterator which is not deferencable as caught by a Debug assertion</li> </ul> <p>For it to work like you want, you do need to compare Shape, not Shape*</p> <p>As pointed out in other answers, <a href="http://www.boost.org/doc/libs/1_37_0/libs/ptr_container/doc/ptr_vector.html" rel="nofollow">boost::ptr_vector</a> is an easy way to achieve this.</p> http://stackoverflow.com/questions/268121/when-to-build-your-own-buffer-system-for-i-o-c/268141#268141 5 Answer by David Pierre for When to build your own buffer system for I/O (C++)? David Pierre 2008-11-06T09:58:35Z 2008-11-06T09:58:35Z <p>Maybe you should look into memory mapped files.</p> <p>Check them in this library : <a href="http://www.boost.org/doc/libs/1_37_0/doc/html/interprocess.html" rel="nofollow">Boost.Interprocess</a></p> http://stackoverflow.com/questions/267427/c-file-io-splitting-by-separator/268063#268063 0 Answer by David Pierre for c++ file io & splitting by separator David Pierre 2008-11-06T09:29:12Z 2008-11-06T09:29:12Z <p>If you want to be able to scale to harder input formats, you should consider spirit, boost parser combinator library.</p> <p><a href="http://www.boost.org/doc/libs/1_37_0/libs/spirit/classic/doc/quick_start.html" rel="nofollow">This page</a> has an example which almost do what you need (with reals and one vector though)</p> http://stackoverflow.com/questions/171862/namespaces-and-operator-overloading-in-c/171869#171869 15 Answer by David Pierre for Namespaces and Operator Overloading in C++ David Pierre 2008-10-05T12:03:24Z 2008-10-05T12:03:24Z <p>You should define them in the library namespace. The compiler will find them anyway through argument dependant lookup.</p> <p>No need to pollute the global namespace.</p> http://stackoverflow.com/questions/166033/value-semantics-and-pointer-semantics/166039#166039 5 Answer by David Pierre for value semantics and pointer semantics? David Pierre 2008-10-03T09:08:20Z 2008-10-03T10:58:36Z <p>Java is using implicit pointer semantics for Object types and value semantics for primitives.</p> <p>Value semantics means that you deal directly with values and that you pass copies around. The point here is that when you have a value, you can trust it won't change behind your back.</p> <p>With pointer semantics, you don't have a value, you have an 'address'. Someone else could alter what is there, you can't know.</p> <p>Pointer Semantics in C++ : </p> <pre><code>void foo(Bar * b) ... ... b-&gt;bar() ... </code></pre> <p>You need an * to ask for pointer semantics and -> to call methods on the pointee.</p> <p>Implicit Pointer Semantics in Java :</p> <pre><code>void foo(Bar b) ... ... b.bar() ... </code></pre> <p>Since you don't have the choice of using value semantics, the * isn't needed nor the distinction between -> and ., hence the implicit.</p> http://stackoverflow.com/questions/166220/restore-eclipse-subversion-project-connection/166306#166306 0 Answer by David Pierre for Restore Eclipse subversion project connection David Pierre 2008-10-03T10:47:11Z 2008-10-03T10:47:11Z <p>Svn information is stored in the .svn folders in the projects.</p> <p>NB : I am using Subversive so things may be different.</p> http://stackoverflow.com/questions/157856/do-java-listeners-need-to-be-removed-in-general/157886#157886 2 Answer by David Pierre for Do Java listeners need to be removed? (In general) David Pierre 2008-10-01T14:27:52Z 2008-10-01T14:27:52Z <p>A will indeed keep B alive through the anonymous instance.</p> <p>But I wouldn't override finalize to address that, rather use a static inner class who doesn't keep the B alive.</p> http://stackoverflow.com/questions/156707/in-eclipse-how-do-i-replace-a-character-by-a-new-line/156716#156716 2 Answer by David Pierre for In Eclipse, how do I replace a character by a new line ? David Pierre 2008-10-01T08:35:18Z 2008-10-01T08:46:31Z <p>Check box 'Regular Expressions' and use '\R' in the 'Replace with' box</p> <p>It's a new feature introduced with Eclipse 3.4, See <a href="http://download.eclipse.org/eclipse/downloads/drops/R-3.4-200806172000/whatsnew3.4/eclipse-news-part1.html" rel="nofollow">What's New in 3.4</a></p> http://stackoverflow.com/questions/145814/compile-time-type-based-dispatch/145816#145816 1 Answer by David Pierre for Compile-time type based dispatch David Pierre 2008-09-28T13:17:31Z 2008-09-28T13:17:31Z <p>Boost traits has something for that : <a href="http://www.boost.org/doc/libs/1_36_0/libs/type_traits/doc/html/boost_typetraits/reference/is_base_of.html" rel="nofollow">is_base_of</a></p> http://stackoverflow.com/questions/142391/getting-a-boostsharedptr-for-this/142397#142397 3 Answer by David Pierre for Getting a boost::shared_ptr for this David Pierre 2008-09-26T22:44:53Z 2008-09-26T22:44:53Z <p>boost has a solution for this use case, check <a href="http://www.boost.org/doc/libs/1_36_0/libs/smart_ptr/enable_shared_from_this.html" rel="nofollow">enable_shared_from_this</a></p> http://stackoverflow.com/questions/132358/how-to-read-file-content-into-istringstream/132387#132387 2 Answer by David Pierre for How to read file content into istringstream? David Pierre 2008-09-25T09:50:28Z 2008-09-25T09:50:28Z <p>Maybe you should search into memory mapped files instead.</p> http://stackoverflow.com/questions/119506/virtual-member-call-in-a-constructor/119520#119520 2 Answer by David Pierre for Virtual member call in a constructor David Pierre 2008-09-23T07:15:32Z 2008-09-23T07:15:32Z <p>Yes, it's generally bad to call virtual method in the constructor.</p> <p>At this point, the objet may not be fully constructed yet, and the invariants expected by methods may not hold yet.</p> http://stackoverflow.com/questions/102468/algorithm-problem-letter-combinations/102510#102510 7 Answer by David Pierre for Algorithm problem: letter combinations David Pierre 2008-09-19T14:55:24Z 2008-09-19T14:55:24Z <p>It can be done easily recursively.</p> <p>The idea is that to handle the whole code of size n, you must handle first the n - 1 digits. Once you have all answers for n-1 digits, the answers for the whole are deduced by appending to them the correct(s) char(s) for the last one.</p> http://stackoverflow.com/questions/101849/in-eclipse-how-to-display-inherited-members-in-outline-view/101909#101909 1 Answer by David Pierre for In eclipse, how to display inherited members in Outline view? David Pierre 2008-09-19T13:42:39Z 2008-09-19T13:42:39Z <p>Looks like you can't do it.</p> <p>Maybe you should file it as an improvement request.</p> http://stackoverflow.com/questions/100633/why-do-you-not-declare-several-variables-of-the-same-type-on-the-same-line/100662#100662 7 Answer by David Pierre for Why do you not declare several variables of the same type on the same line? David Pierre 2008-09-19T09:13:15Z 2008-09-19T09:13:15Z <p>In C++ :</p> <pre><code>int * i, j; </code></pre> <p>i is of type int *, j is of type int. The distinction is too easily missed.</p> <p>Besides having them on one line each makes it easier to add some comments later</p> http://stackoverflow.com/questions/100162/what-is-your-tool-for-version-control-faq/100195#100195 6 Answer by David Pierre for What is your tool for version control (FAQ) David Pierre 2008-09-19T07:14:48Z 2008-09-19T07:14:48Z <p>I use Subversion with Eclipse integration from Subversive.</p> <p>Tools to avoid :</p> <blockquote> <p>CVS since SVN is better on all regards</p> <p>SourceSafe since it can corrupts files</p> </blockquote> http://stackoverflow.com/questions/100161/is-eclipse-3-4-ganymede-memory-usage-significantly-higher-than-3-2/100166#100166 0 Answer by David Pierre for Is Eclipse 3.4 (Ganymede) memory usage significantly higher than 3.2? David Pierre 2008-09-19T07:08:28Z 2008-09-19T07:08:28Z <p>You can use JVM command switchs (in eclipse.ini) to control memory usage more precisely.</p> <p>But I am not sure it would be a good idea.</p> http://stackoverflow.com/questions/98489/what-is-the-proper-way-to-do-a-subversion-merge-in-eclipse/98644#98644 2 Answer by David Pierre for What is the proper way to do a Subversion merge in Eclipse? David Pierre 2008-09-19T01:29:27Z 2008-09-19T01:29:27Z <p>Use Eclipse integration, it works perfectly fine.</p> <p>The main change from CVS, is that you only merge deltas from a branch, ie changes from one revision to another. That is to say you have to track the correct start revision somehow (unless you have svn 1.5 merge history)</p> <p>If you got that right, it's only up to you to get the changes right with the compare editor.</p> http://stackoverflow.com/questions/98153/whats-the-best-hashing-algorithm-to-use-on-a-stl-string-when-using-hashmap/98176#98176 2 Answer by David Pierre for What's the best hashing algorithm to use on a stl string when using hash_map? David Pierre 2008-09-19T00:01:31Z 2008-09-19T00:01:31Z <p>Boost has an <a href="http://www.boost.org/doc/libs/1_36_0/doc/html/hash.html" rel="nofollow">boost::hash</a> library which can provides some basic hash functions for most common types.</p> http://stackoverflow.com/questions/98079/can-eclipse-extract-a-second-class-in-class-file-to-its-own-file/98132#98132 0 Answer by David Pierre for Can eclipse extract a second class in class file to its own file David Pierre 2008-09-18T23:55:07Z 2008-09-18T23:55:07Z <p>Can be done in 2 refactorings :</p> <blockquote> <ol> <li><p>Convert Member type to top level</p></li> <li><p>Move</p></li> </ol> </blockquote> http://stackoverflow.com/questions/97987/switch-vs-if-else/98028#98028 0 Answer by David Pierre for Switch vs if-else David Pierre 2008-09-18T23:33:32Z 2008-09-18T23:33:32Z <p>Switchs can generally be compiled to jump tables which would be more performant than chained ifs.</p> http://stackoverflow.com/questions/1489319/how-do-you-move-all-versions-of-files-from-one-folder-to-another-in-documentu Comment by David Pierre on How do you move **all** versions of files from one folder to another in Documentum using DFC David Pierre 2009-09-29T11:25:54Z 2009-09-29T11:25:54Z Maybe you could include more details in the error you are facing in production. http://stackoverflow.com/questions/1459148/existing-implementations-of-trees-in-java/1459155#1459155 Comment by David Pierre on Existing implementations of Trees in Java? David Pierre 2009-09-22T10:00:50Z 2009-09-22T10:00:50Z Yes, they use a tree internally, but they aren't tree themselves http://stackoverflow.com/questions/1044448/why-does-boostvariant-not-provide-operator/1044493#1044493 Comment by David Pierre on Why does boost::variant not provide operator != David Pierre 2009-06-25T15:49:28Z 2009-06-25T15:49:28Z I didn't meant to say variant is using the lib itself, but that you can do it yourself to inject operator!= http://stackoverflow.com/questions/963936/gracefully-avoiding-nullpointerexception-in-java/963957#963957 Comment by David Pierre on Gracefully avoiding NullPointerException in Java David Pierre 2009-06-08T09:06:54Z 2009-06-08T09:06:54Z Indeed you can, but it is optimisation favored to readibility, always a bad idea. http://stackoverflow.com/questions/594054/date-problem-in-java/594131#594131 Comment by David Pierre on date problem in java David Pierre 2009-02-27T10:04:42Z 2009-02-27T10:04:42Z He is asking for previous month 1st day, your code sample doesn't do that. http://stackoverflow.com/questions/268121/when-to-build-your-own-buffer-system-for-i-o-c/268176#268176 Comment by David Pierre on When to build your own buffer system for I/O (C++)? David Pierre 2008-11-06T12:45:03Z 2008-11-06T12:45:03Z I wasn't aware of that one. http://stackoverflow.com/questions/178333/multiple-inheritance-in-c/178368#178368 Comment by David Pierre on Multiple Inheritance in C# David Pierre 2008-10-07T14:34:30Z 2008-10-07T14:34:30Z Yes, but there are use cases where you really need the methods as part of the main object http://stackoverflow.com/questions/174892/what-is-the-most-spectacular-way-to-shoot-yourself-in-the-foot-with-c/174947#174947 Comment by David Pierre on What is the most spectacular way to shoot yourself in the foot with C++? David Pierre 2008-10-06T16:13:11Z 2008-10-06T16:13:11Z A syntax error hardly counts as blowing the whole leg http://stackoverflow.com/questions/166113/what-is-returned-from-a-function-that-returns-the-return-of-another-function-in-c/166130#166130 Comment by David Pierre on What is returned from a function that returns the return of another function in C++? David Pierre 2008-10-03T10:50:49Z 2008-10-03T10:50:49Z Isn't it just called RVO when the temporary wasn't named. http://stackoverflow.com/questions/157856/do-java-listeners-need-to-be-removed-in-general/157903#157903 Comment by David Pierre on Do Java listeners need to be removed? (In general) David Pierre 2008-10-01T15:12:48Z 2008-10-01T15:12:48Z And the B not being garbage collected is exactly the garbage problem he mentions. If this pattern goes wild, it could means lots of 'useless' B kept alives for naught http://stackoverflow.com/questions/157856/do-java-listeners-need-to-be-removed-in-general/157884#157884 Comment by David Pierre on Do Java listeners need to be removed? (In general) David Pierre 2008-10-01T15:07:16Z 2008-10-01T15:07:16Z The question says : Assume that the A instance will be shared with some other objects as well and will outlive the B instance On the other hand, it's true the code example doesn't reflect that. http://stackoverflow.com/questions/157856/do-java-listeners-need-to-be-removed-in-general/157884#157884 Comment by David Pierre on Do Java listeners need to be removed? (In general) David Pierre 2008-10-01T14:30:04Z 2008-10-01T14:30:04Z The A is supposed to outlive the B here http://stackoverflow.com/questions/156707/in-eclipse-how-do-i-replace-a-character-by-a-new-line/156727#156727 Comment by David Pierre on In Eclipse, how do I replace a character by a new line ? David Pierre 2008-10-01T09:12:00Z 2008-10-01T09:12:00Z Managed to paste using right click menu, but the replace won't insert newlines. http://stackoverflow.com/questions/156707/in-eclipse-how-do-i-replace-a-character-by-a-new-line/156727#156727 Comment by David Pierre on In Eclipse, how do I replace a character by a new line ? David Pierre 2008-10-01T08:51:29Z 2008-10-01T08:51:29Z I don't even understand what the workaround is supposed to be http://stackoverflow.com/questions/156707/in-eclipse-how-do-i-replace-a-character-by-a-new-line/156716#156716 Comment by David Pierre on In Eclipse, how do I replace a character by a new line ? David Pierre 2008-10-01T08:43:50Z 2008-10-01T08:43:50Z Check if Eclipse value assistance in the Replace with box offers you \R as a possibility, if it doesn't your Eclipse version doesn't handle it