User David Pierre - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T19:10:07Zhttp://stackoverflow.com/feeds/user/18296http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1687932/documentum-instruction/1687978#16879784Answer by David Pierre for documentum instructionDavid Pierre2009-11-06T14:31:04Z2009-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#16797431Answer by David Pierre for Data-structure that stores unique elements but answers queries for another ordering in C++David Pierre2009-11-05T10:48:44Z2009-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#16506750Answer by David Pierre for Changing editor tab width in eclipse 3.5David Pierre2009-10-30T15:58:18Z2009-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#16380810Answer by David Pierre for Java memory leakDavid Pierre2009-10-28T15:39:43Z2009-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#149280611Answer by David Pierre for Scala in java code : $colonDavid Pierre2009-09-29T14:11:18Z2009-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#14782380Answer by David Pierre for How to remove subversive action in Synchronize view ?David Pierre2009-09-25T16:14:16Z2009-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#14592272Answer by David Pierre for Which Documentum APIs should I use?David Pierre2009-09-22T10:15:23Z2009-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#10444931Answer by David Pierre for Why does boost::variant not provide operator !=David Pierre2009-06-25T15:09:35Z2009-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#4832608Answer by David Pierre for Disable DTD warning for ant scripts in eclipse?David Pierre2009-01-27T12:41:23Z2009-01-27T12:41:23Z<p>The simplest is to supply a minimal DTD to shut it up.</p>
<pre><code><!DOCTYPE project> for ant files
</code></pre>
http://stackoverflow.com/questions/301959/vector-iterator-not-dereferencable/301990#3019906Answer by David Pierre for Vector iterator not dereferencableDavid Pierre2008-11-19T14:16:34Z2008-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#2681415Answer by David Pierre for When to build your own buffer system for I/O (C++)?David Pierre2008-11-06T09:58:35Z2008-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#2680630Answer by David Pierre for c++ file io & splitting by separatorDavid Pierre2008-11-06T09:29:12Z2008-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#17186915Answer by David Pierre for Namespaces and Operator Overloading in C++David Pierre2008-10-05T12:03:24Z2008-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#1660395Answer by David Pierre for value semantics and pointer semantics?David Pierre2008-10-03T09:08:20Z2008-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->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#1663060Answer by David Pierre for Restore Eclipse subversion project connectionDavid Pierre2008-10-03T10:47:11Z2008-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#1578862Answer by David Pierre for Do Java listeners need to be removed? (In general)David Pierre2008-10-01T14:27:52Z2008-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#1567162Answer by David Pierre for In Eclipse, how do I replace a character by a new line ?David Pierre2008-10-01T08:35:18Z2008-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#1458161Answer by David Pierre for Compile-time type based dispatchDavid Pierre2008-09-28T13:17:31Z2008-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#1423973Answer by David Pierre for Getting a boost::shared_ptr for thisDavid Pierre2008-09-26T22:44:53Z2008-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#1323872Answer by David Pierre for How to read file content into istringstream?David Pierre2008-09-25T09:50:28Z2008-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#1195202Answer by David Pierre for Virtual member call in a constructorDavid Pierre2008-09-23T07:15:32Z2008-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#1025107Answer by David Pierre for Algorithm problem: letter combinationsDavid Pierre2008-09-19T14:55:24Z2008-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#1019091Answer by David Pierre for In eclipse, how to display inherited members in Outline view?David Pierre2008-09-19T13:42:39Z2008-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#1006627Answer by David Pierre for Why do you not declare several variables of the same type on the same line?David Pierre2008-09-19T09:13:15Z2008-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#1001956Answer by David Pierre for What is your tool for version control (FAQ)David Pierre2008-09-19T07:14:48Z2008-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#1001660Answer by David Pierre for Is Eclipse 3.4 (Ganymede) memory usage significantly higher than 3.2?David Pierre2008-09-19T07:08:28Z2008-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#986442Answer by David Pierre for What is the proper way to do a Subversion merge in Eclipse?David Pierre2008-09-19T01:29:27Z2008-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#981762Answer by David Pierre for What's the best hashing algorithm to use on a stl string when using hash_map?David Pierre2008-09-19T00:01:31Z2008-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#981320Answer by David Pierre for Can eclipse extract a second class in class file to its own fileDavid Pierre2008-09-18T23:55:07Z2008-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#980280Answer by David Pierre for Switch vs if-elseDavid Pierre2008-09-18T23:33:32Z2008-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-documentuComment by David Pierre on How do you move **all** versions of files from one folder to another in Documentum using DFCDavid Pierre2009-09-29T11:25:54Z2009-09-29T11:25:54ZMaybe 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#1459155Comment by David Pierre on Existing implementations of Trees in Java?David Pierre2009-09-22T10:00:50Z2009-09-22T10:00:50ZYes, they use a tree internally, but they aren't tree themselveshttp://stackoverflow.com/questions/1044448/why-does-boostvariant-not-provide-operator/1044493#1044493Comment by David Pierre on Why does boost::variant not provide operator !=David Pierre2009-06-25T15:49:28Z2009-06-25T15:49:28ZI 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#963957Comment by David Pierre on Gracefully avoiding NullPointerException in JavaDavid Pierre2009-06-08T09:06:54Z2009-06-08T09:06:54ZIndeed you can, but it is optimisation favored to readibility, always a bad idea.http://stackoverflow.com/questions/594054/date-problem-in-java/594131#594131Comment by David Pierre on date problem in javaDavid Pierre2009-02-27T10:04:42Z2009-02-27T10:04:42ZHe 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#268176Comment by David Pierre on When to build your own buffer system for I/O (C++)?David Pierre2008-11-06T12:45:03Z2008-11-06T12:45:03ZI wasn't aware of that one.http://stackoverflow.com/questions/178333/multiple-inheritance-in-c/178368#178368Comment by David Pierre on Multiple Inheritance in C#David Pierre2008-10-07T14:34:30Z2008-10-07T14:34:30ZYes, but there are use cases where you really need the methods as part of the main objecthttp://stackoverflow.com/questions/174892/what-is-the-most-spectacular-way-to-shoot-yourself-in-the-foot-with-c/174947#174947Comment by David Pierre on What is the most spectacular way to shoot yourself in the foot with C++?David Pierre2008-10-06T16:13:11Z2008-10-06T16:13:11ZA syntax error hardly counts as blowing the whole leghttp://stackoverflow.com/questions/166113/what-is-returned-from-a-function-that-returns-the-return-of-another-function-in-c/166130#166130Comment by David Pierre on What is returned from a function that returns the return of another function in C++?David Pierre2008-10-03T10:50:49Z2008-10-03T10:50:49ZIsn'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#157903Comment by David Pierre on Do Java listeners need to be removed? (In general)David Pierre2008-10-01T15:12:48Z2008-10-01T15:12:48ZAnd 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 naughthttp://stackoverflow.com/questions/157856/do-java-listeners-need-to-be-removed-in-general/157884#157884Comment by David Pierre on Do Java listeners need to be removed? (In general)David Pierre2008-10-01T15:07:16Z2008-10-01T15:07:16ZThe 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#157884Comment by David Pierre on Do Java listeners need to be removed? (In general)David Pierre2008-10-01T14:30:04Z2008-10-01T14:30:04ZThe A is supposed to outlive the B herehttp://stackoverflow.com/questions/156707/in-eclipse-how-do-i-replace-a-character-by-a-new-line/156727#156727Comment by David Pierre on In Eclipse, how do I replace a character by a new line ?David Pierre2008-10-01T09:12:00Z2008-10-01T09:12:00ZManaged 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#156727Comment by David Pierre on In Eclipse, how do I replace a character by a new line ?David Pierre2008-10-01T08:51:29Z2008-10-01T08:51:29ZI don't even understand what the workaround is supposed to behttp://stackoverflow.com/questions/156707/in-eclipse-how-do-i-replace-a-character-by-a-new-line/156716#156716Comment by David Pierre on In Eclipse, how do I replace a character by a new line ?David Pierre2008-10-01T08:43:50Z2008-10-01T08:43:50ZCheck 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