User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T13:50:57Z http://stackoverflow.com/feeds/user/23167 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1005476/how-to-detect-whether-there-is-a-specific-member-variable-in-class/1006152#1006152 0 Answer by ppinsider for How to detect whether there is a specific member variable in class? ppinsider 2009-06-17T10:13:20Z 2009-06-17T10:13:20Z <p>Are the functions (x, X, y, Y) from an abstract base class, or could they be refactored to be so? If so you can use the SUPERSUBCLASS() macro from Modern C++ Design, along with ideas from the answer to this question:</p> <p><a href="http://stackoverflow.com/questions/145814/compile-time-type-based-dispatch">http://stackoverflow.com/questions/145814/compile-time-type-based-dispatch</a></p> http://stackoverflow.com/questions/958374/correct-formatting-of-numbers-with-errors-c 1 Correct formatting of numbers with errors (C++) ppinsider 2009-06-05T22:07:07Z 2009-06-05T22:58:15Z <p>I have three sets of numbers, a measurement (which is in the range 0-1 inclusive) two errors (positive and negative. These numbers should be displayed consistently to the number of significant figures, rounded up, which corresponds to the first non-zero entry in either of the number. </p> <p>This requirement is skipped on the measurement if it is one (i.e. only the figures in the errors need be considered). For example:</p> <pre><code>0.95637 (+0.00123, -0.02935) --&gt; 0.96 +0.00 -0.03 1.00000 (+0.0, -0.0979) --&gt; 1.0 +0.0 -0.1 (note had to truncate due to -ve error rounding up at first significant digit) </code></pre> <p>Now, getting at the first non-zero digit is easy by taking log10(num), but I'm having an idiotic moment trying to get stripping and rounding working in a clean fashion.</p> <p>All data types are doubles, and language of choice is C++. All and any ideas welcome!</p> http://stackoverflow.com/questions/602112/template-function-passed-to-shared-library-c 2 Template function passed to shared library (c++) ppinsider 2009-03-02T12:19:23Z 2009-03-02T12:29:21Z <p>Bit of a thought experiment... Ingredient 1: A class in a (precompiled) shared library that has a function that takes a pointer to an object derived from ostream:</p> <pre><code>void ClassName::SetDefaultStream(std::ostream *stream) </code></pre> <p>Ingredient 2:</p> <p>My own class deriving from std::ostream, with some generic templated stream operator:</p> <pre><code>class MyStream : public std::ostream { public: template &lt;typename T&gt; MyStream &amp;operator&lt;&lt;(const T &amp;data) { std::cout &lt;&lt; data; return *this; } } </code></pre> <p>Now, if I pass the address of an instantiation of this class into the SetDefaultStream method, what will happen? At compile time, the compiler has no idea what types will be applied to the stream in the shared class, so surely no code will be synthesised? Will it fail to compile, will it compile and then crash when run, will smoke come out of the computer?</p> http://stackoverflow.com/questions/551156/compiler-not-creating-templated-ostream-operator 2 Compiler not creating templated ostream << operator ppinsider 2009-02-15T16:29:19Z 2009-02-15T16:44:09Z <p>Hi,</p> <p>I have a class, defined in a head as:</p> <pre><code>template &lt;typename T&gt; class MyClass { template &lt;typename U&gt; friend std::ostream&amp; operator&lt;&lt;(std::ostream&amp; output, const MyClass&lt;U&gt;&amp; p); public: ... } </code></pre> <p>In an implementation file, I have:</p> <pre><code>template &lt;typename U&gt; std::ostream&amp; operator&lt;&lt;(std::ostream&amp; output, const MyClass&lt;U&gt;&amp; m) { output &lt;&lt; "Some stuff"; return output; } </code></pre> <p>Which all looks fairly kosher. However, when I try and use this operator (i.e. std::cout &lt;&lt; MyClass()), I get the following linker error:</p> <pre><code>Undefined symbols: std::basic_ostream&lt;char, std::char_traits&lt;char&gt; &gt;&amp; operator&lt;&lt; &lt;InnerType&gt;(std::basic_ostream&lt;char, std::char_traits&lt;char&gt; &gt;&amp;, MyClass&lt;InnerType&gt; const&amp;) </code></pre> <p>I am suprised the compiler hasn't automagicially generated this for me... Any suggestions as to what I'm doing wrong?</p> http://stackoverflow.com/questions/515690/sql-query-to-select-unreferenced-rows 0 SQL query to select unreferenced rows ppinsider 2009-02-05T12:26:27Z 2009-02-05T12:38:12Z <p>I'm having a brain-dead moment... I have two tables described by:</p> <pre><code>CREATE TABLE table_a ( id INTEGER PRIMARY KEY AUTO_INCREMENT, name VARCHAR(255) NOT NULL UNIQUE (name)) CREATE TABLE table_b ( id INTEGER PRIMARY KEY AUTO_INCREMENT, a_key INTEGER NOT NULL, other_stuff VARCHAR(255) NOT NULL, FOREIGN KEY(a_key) REFERENCES table_a(id) ON DELETE CASCADE) </code></pre> <p>How can I select all rows from table_a that do not have an entry in table_b.a_key?</p> http://stackoverflow.com/questions/145814/compile-time-type-based-dispatch 1 Compile-time type based dispatch ppinsider 2008-09-28T13:14:57Z 2009-02-02T09:44:41Z <p>Following techniques from 'Modern C++ Design', I am implementing a persistence library with various compile-time optimisations. I would like the ability to dispatch a function to a templated member variable if that variable derives from a given class:</p> <pre><code>template&lt;class T, template &lt;class&gt; class Manager = DefaultManager&gt; class Data { private: T *data_; public: void Dispatch() { if(SUPERSUBCLASS(Container, T)) { data_-&gt;IKnowThisIsHere(); } else { Manager&lt;T&gt;::SomeGenericFunction(data_); } } } </code></pre> <p>Where SUPERSUBCLASS is a compile-time macro to determine object inheritance. Of course, this fails in all cases where T does to inherit from Container (or T is an intrinsic type etc etc) because the compiler rightly complains that IKnowThisIsHere() is not a data member, even though this code path will never be followed, as shown here after preprocessing with T = int:</p> <pre><code>private: int *data_; public: void Dispatch() { if(false) { data_-&gt;IKnowThisIsHere(); </code></pre> <p>Compiler clearly complains at this code, even though it will never get executed. A suggestion of using a dynamic_cast also does not work, as again a type conversion is attempted at compile time that is not possible (for example with T=double, std::string):</p> <pre><code>void Dispatch() { if(false) { dynamic_cast&lt;Container*&gt;(data_)-&gt;IKnowThisIsHere(); error: cannot dynamic_cast '((const Data&lt;double, DefaultManager&gt;*)this)-&gt;Data&lt;double, DefaultManager&gt;::data_' (of type 'double* const') to type 'class Container*' (source is not a pointer to class) error: cannot dynamic_cast '((const Data&lt;std::string, DefaultManager&gt;*)this)-&gt;Da&lt;sttad::string, DefaultManager&gt;::data_' (of type 'struct std::string* const') to type 'class Container*' (source type is not polymorphic) </code></pre> <p>I really need to emulate (or indeed persuade!) having the compiler emit one set of code if T does inherit from Container, and another if it does not.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/396327/question-on-multiple-inheritance-virtual-base-classes-and-object-size-in-c/396494#396494 7 Answer by ppinsider for Question on multiple inheritance, virtual base classes, and object size in C++ ppinsider 2008-12-28T18:24:54Z 2008-12-29T15:06:07Z <p>Mark Santesson's answer is pretty much on the money, but the assertation that there are no vtables is incorrect. You can use g++ -fdump-class-hierarchy to show what's going on. Here's the no virtuals case:</p> <pre><code>Class Base size=4 align=4 base size=4 base align=4 Base (0x19a8400) 0 Class X size=8 align=4 base size=8 base align=4 X (0x19a8440) 0 Base (0x19a8480) 0 Class Y size=8 align=4 base size=8 base align=4 Y (0x19a84c0) 0 Base (0x19a8500) 0 Class Z size=16 align=4 base size=16 base align=4 Z (0x19b1800) 0 X (0x19a8540) 0 Base (0x19a8580) 0 Y (0x19a85c0) 8 Base (0x19a8600) 8 </code></pre> <p>Pay particular attention to the "base size" argument. Now the virtuals case, and showing only Z:</p> <pre><code>Class Z size=20 align=4 base size=16 base align=4 Z (0x19b3000) 0 vptridx=0u vptr=((&amp; Z::_ZTV1Z) + 12u) X (0x19a8840) 0 primary-for Z (0x19b3000) subvttidx=4u Base (0x19a8880) 16 virtual vbaseoffset=-0x0000000000000000c Y (0x19a88c0) 8 subvttidx=8u vptridx=12u vptr=((&amp; Z::_ZTV1Z) + 24u) Base (0x19a8880) alternative-path </code></pre> <p>Note the "base size" is the same, but the "size" is one pointer more, and note that there is now a vtable pointer! This in turn contains the construction vtables for the parent classes, and all the inter-class magic (construction vtables, and virtual table table (VTT)), as described here:</p> <p><a href="http://www.cse.wustl.edu/~mdeters/seminar/fall2005/mi.html" rel="nofollow">http://www.cse.wustl.edu/~mdeters/seminar/fall2005/mi.html</a></p> <p>Note that the actual function dispatch vtable will be empty.</p> http://stackoverflow.com/questions/262254/c-crtp-to-avoid-dynamic-polymorphism/262276#262276 0 Answer by ppinsider for C++: CRTP to avoid dynamic polymorphism ppinsider 2008-11-04T16:12:36Z 2008-11-04T18:23:52Z <p><a href="http://en.wikipedia.org/wiki/Curiously_Recurring_Template_Pattern" rel="nofollow">This</a> Wikipedia answer has all you need. Namely:</p> <pre><code>template &lt;class Derived&gt; struct Base { void interface() { // ... static_cast&lt;Derived*&gt;(this)-&gt;implementation(); // ... } static void static_func() { // ... Derived::static_sub_func(); // ... } }; struct Derived : Base&lt;Derived&gt; { void implementation(); static void static_sub_func(); }; </code></pre> <p>Although I don't know how much this actually buys you. The overhead of a virtual function call is (compiler dependent, of course):</p> <ul> <li>Memory: One function pointer per virtual function</li> <li>Runtime: One function pointer call</li> </ul> <p>While the overhead of CRTP static polymorphism is:</p> <ul> <li>Memory: Duplication of Base per template instantiation</li> <li>Runtime: One function pointer call + whatever static_cast is doing</li> </ul> http://stackoverflow.com/questions/257030/how-do-i-create-an-nullary-functor-in-c-using-the-loki-library/257064#257064 1 Answer by ppinsider for How do I create an nullary Functor in C++ (using the loki library) ppinsider 2008-11-02T17:10:14Z 2008-11-02T17:32:49Z <p>Looking at the source code, the Functor template definition is as follows:</p> <pre><code>template &lt;typename R = void, class TList = NullType, template&lt;class, class&gt; class ThreadingModel = LOKI_DEFAULT_THREADING_NO_OBJ_LEVEL&gt; class Functor{...}; </code></pre> <p>As commented below, there are no template typedefs allowed, so all types (or accept all defaults) need to be specified.</p> <p>You can just define as follows and let the defaults do the work:</p> <pre><code>typedef Functor&lt;&gt; BitButtonPushHandler; </code></pre> <p>This compiles for me with a small test Functor class (not the actual Loki one), and I can use the typedef successfully.</p> http://stackoverflow.com/questions/256807/check-if-array-index-exists/256825#256825 6 Answer by ppinsider for Check if array index exists ppinsider 2008-11-02T12:08:42Z 2008-11-02T12:08:42Z <p>In C++, the size of an array is fixed when it is declared, and while you can access off the end of the declared array size, this is very dangerous and the source of hard-to-track-down bugs:</p> <pre><code>int i[10]; i[10] = 2; // Legal but very dangerous! Writing on memory you don't know about </code></pre> <p>It seems that you want array-like behavior, but without all elements being filled. Traditionally, this is in the realms of hash-tables. Vectors are not such a good solution here as you will have empty elements taking up space, much better is something like a map, where you can test if an element exists by searching for it and interpreting the result:</p> <pre><code>#include &lt;map&gt; #include &lt;string&gt; // Declare the map - integer keys, string values std::map&lt;int, std::string&gt; a; // Add an item at an arbitrary location a[2] = std::string("A string"); // Find a key that isn't present if(a.find(1) == a.end()) { // This code will be run in this example std::cout &lt;&lt; "Not found" &lt;&lt; std::endl; } else { std::cout &lt;&lt; "Found" &lt;&lt; std::endl; } </code></pre> <p>One word of warning: Use the above method to find if a key exists, rather than something like testing for a default value</p> <pre><code>if(a[2] == 0) { a[2] = myValueToPutIn; } </code></pre> <p>as the behavior of a map is to insert a default constructed object on the first access of that key value, if nothing is currently present.</p> http://stackoverflow.com/questions/226828/c-constructs-replacing-c-constructs/226890#226890 -4 Answer by ppinsider for C++ constructs replacing C constructs ppinsider 2008-10-22T18:00:39Z 2008-10-22T18:00:39Z <p>Nearly any use of <code>void*</code>.</p> http://stackoverflow.com/questions/219420/how-would-you-improve-this-algorithm-c-string-reversal/219926#219926 0 Answer by ppinsider for How would you improve this algorithm? (c string reversal) ppinsider 2008-10-20T21:09:29Z 2008-10-20T21:09:29Z <p>WRT: "Now do it without temporary holding variable"... Something like this perhaps (and keeping array indexing for now):</p> <pre><code>int length = strlen(string); for(int i = 0; i &lt; length/2; i++) { string[i] ^= string[length - i]; string[length - i] ^= string[i]; string[i] ^= string[length - i]; } </code></pre> http://stackoverflow.com/questions/209793/any-way-to-cast-with-class-operator-only/210339#210339 1 Answer by ppinsider for Any way to cast with class operator only? ppinsider 2008-10-16T21:12:09Z 2008-10-16T21:30:59Z <p>As template-related compiler error messages are usually a complete pain to unravel, if you don't mind specifying each conversion you can get the compiler to emit a more instructive message in the fail case by providing a default template definition too. This uses the fact that the compiler will only attempt to compile code in templates that is actually invoked.</p> <pre><code>#include &lt;string&gt; // Class to trigger compiler warning class NO_OPERATOR_CONVERSION_AVAILABLE { private: NO_OPERATOR_CONVERSION_AVAILABLE(){}; }; // Default template definition to cause compiler error template&lt;typename T1, typename T2&gt; T1 operator_cast(const T2&amp;) { NO_OPERATOR_CONVERSION_AVAILABLE a; return T1(); } // Template specialisation template&lt;&gt; std::string operator_cast(const std::string &amp;x) { return x; } </code></pre> http://stackoverflow.com/questions/162529/what-is-the-fashionable-programming-language-in-academia/162676#162676 0 Answer by ppinsider for What is the fashionable programming language in academia? ppinsider 2008-10-02T14:41:32Z 2008-10-02T14:41:32Z <p>It depends if you mean "What is taught" or "What is used", and in what subject context. The two often are different (at least in physics, my field). In some areas there is still a lot of Fortran 77 kicking around. I use C++ mostly (as is common in particle physics), but also Python for quick tasks.</p> <p>We are going to offer undergraduates doing the computational physics course this year a choice of completing exercises in Python, C++ or Fortran.</p> <p>To be productive in the world of physics, you basically need to know Fortran and C++.</p> http://stackoverflow.com/questions/146275/function-pointer-to-template-class-member-functions 1 Function pointer to template class member functions ppinsider 2008-09-28T17:13:37Z 2008-09-28T17:45:55Z <p>I have a templated class defined (in part) as</p> <pre><code>template &lt;class T&gt; MyClass { public: void DoSomething(){} }; </code></pre> <p>If I want to call DoSomething from another class, but be able to do this for multiple 'T' types in the same place, I am stuck for an idea as method functions pointers are uniquely constrained to the class type. Of course, each MyClass is a different type, so I can not store function pointers to MyClassDoSomething() in a 'polymorphic' way.</p> <p>My use-case is I want to store, in a holding class, a vector of function pointers to 'DoSomething' such that I can issue a call to all stored classes from one place.</p> <p>Has anyone any suggestions?</p> http://stackoverflow.com/questions/146275/function-pointer-to-template-class-member-functions/146335#146335 0 Answer by ppinsider for Function pointer to template class member functions ppinsider 2008-09-28T17:45:55Z 2008-09-28T17:45:55Z <p>You know, that is just what I needed to do. Bizzarly I had discounted it as a solution valid for my usecase early on, for reasons that now escape me. I think I was blinded by some metaprogramming stuff I'm doing in the same place for compile-time dispatch (i.e. confusing compile time and runtime in my addled brain).</p> <p>Thanks for the jolts!</p> http://stackoverflow.com/questions/145814/compile-time-type-based-dispatch/145859#145859 0 Answer by ppinsider for Compile-time type based dispatch ppinsider 2008-09-28T13:44:46Z 2008-09-28T13:44:46Z <p>Unfortunately I've been through that too (and it is, also, a runtime call ;) ) The compiler complains if you pass in non polymorphic or class types, in a similar way to before:</p> <pre><code>error: cannot dynamic_cast '((const Data&lt;double, DefaultManager&gt;*)this)-&gt;Data&lt;double, RawManager&gt;::data_' (of type 'double* const') to type 'class Container*' (source is not a pointer to class) </code></pre> <p>or</p> <pre><code>error: cannot dynamic_cast '((const Data&lt;std::string, DefaultRawManager&gt;*)this)-&gt;Data&lt;std::string, DefaultManager&gt;::data_' (of type 'struct std::string* const') to type 'class Container*' (source type is not polymorphic) </code></pre> http://stackoverflow.com/questions/145814/compile-time-type-based-dispatch/145821#145821 0 Answer by ppinsider for Compile-time type based dispatch ppinsider 2008-09-28T13:20:50Z 2008-09-28T13:20:50Z <p>I'm interested in doing this 'from first principles' as an educational curiosity. However, I will look at the Boost libraries.</p> <p>In any case, I don't think is_base_of is any help - it does exactly the same as the SUPERSUBCLASS macro...</p> http://stackoverflow.com/questions/551156/compiler-not-creating-templated-ostream-operator/551160#551160 Comment by on Compiler not creating templated ostream << operator 2009-02-15T17:05:44Z 2009-02-15T17:05:44Z Deary me, what an obvious solution. Wood for the trees! http://stackoverflow.com/questions/396327/question-on-multiple-inheritance-virtual-base-classes-and-object-size-in-c/396494#396494 Comment by on Question on multiple inheritance, virtual base classes, and object size in C++ 2008-12-29T00:01:00Z 2008-12-29T00:01:00Z Run the code through g++ with that option and you'll see why. Look at the link I gave to understand it all; much better than me trying to re-hash it here! http://stackoverflow.com/questions/332030/when-should-staticcast-dynamiccast-and-reinterpretcast-be-used/332070#332070 Comment by on When should static_cast, dynamic_cast and reinterpret_cast be used? 2008-12-01T20:30:24Z 2008-12-01T20:30:24Z Agreed. I spit at the sight of developers who don't understand const correctness and why it is a good thing. http://stackoverflow.com/questions/328936/getting-a-unique-id-from-a-unix-like-system/328977#328977 Comment by on Getting a unique id from a unix-like system 2008-11-30T21:33:38Z 2008-11-30T21:33:38Z Err, no, a UUID is different every time it's generated: &quot;unique id that will be persistent every time my application runs in the same machine&quot; http://stackoverflow.com/questions/320506/c-how-to-create-an-array-of-objects-on-the-stack/320514#320514 Comment by on C++: how to create an array of objects on the stack ? 2008-11-26T12:24:34Z 2008-11-26T12:24:34Z Of course, in the std::vector case, the 'array' is in the stack but the objects are not. http://stackoverflow.com/questions/271939/singleton-getinstance-in-thread-worker-methods/271958#271958 Comment by on Singleton getInstance in thread worker methods 2008-11-07T17:38:55Z 2008-11-07T17:38:55Z Int assignment isn't guaranteed to be atomic... http://stackoverflow.com/questions/262254/c-crtp-to-avoid-dynamic-polymorphism/262276#262276 Comment by on C++: CRTP to avoid dynamic polymorphism 2008-11-05T16:37:57Z 2008-11-05T16:37:57Z My point is that the base code will be duplicated in all template instances (the very merging you talk of). Akin to having a template with only one method that relies on the template parameter; everything else is better in a base class otherwise it is pulled in ('merged') multiple times. http://stackoverflow.com/questions/257288/possible-for-c-template-to-check-for-a-functions-existence/257382#257382 Comment by on Possible for C++ template to check for a function's existence? 2008-11-02T21:47:21Z 2008-11-02T21:47:21Z Well indeed, but strictly it's not guaranteed if you're being really standards correct. (P.S. I have seen platforms where this is the case, but the compilers would choke on that code anyway ;) ) http://stackoverflow.com/questions/257288/possible-for-c-template-to-check-for-a-functions-existence/257382#257382 Comment by on Possible for C++ template to check for a function's existence? 2008-11-02T21:40:21Z 2008-11-02T21:40:21Z Although, I used the following for 'one' and 'two': typedef char Small; class Big{char dummy[2];} to ensure no ambiguity about platform dependent variable size. http://stackoverflow.com/questions/257288/possible-for-c-template-to-check-for-a-functions-existence/257382#257382 Comment by on Possible for C++ template to check for a function's existence? 2008-11-02T21:28:38Z 2008-11-02T21:28:38Z Ach you beat me to it! It's a very nice trick this one (confirmed working with GCC 4.1 on Mac OSX 10.5) http://stackoverflow.com/questions/209793/any-way-to-cast-with-class-operator-only/210339#210339 Comment by on Any way to cast with class operator only? 2008-10-16T21:38:29Z 2008-10-16T21:38:29Z Yes, I think that semantic difference is valid. There must be a way to determine at compile time if an explicit conversion operator applies - I can think off the top of my head how you can tell if <i>any</i> conversion is valid, but explicit is harder. I will think some more... http://stackoverflow.com/questions/146275/function-pointer-to-template-class-member-functions/146280#146280 Comment by on Function pointer to template class member functions 2008-09-28T17:23:08Z 2008-09-28T17:23:08Z Thanks for the idea, but I want it to be completely type agnostic, so without a need for explicit bindings for every available type. http://stackoverflow.com/questions/145814/compile-time-type-based-dispatch/145944#145944 Comment by on Compile-time type based dispatch 2008-09-28T16:07:10Z 2008-09-28T16:07:10Z Thanks muchly - this is just what I was after.