User Michel - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T03:38:15Zhttp://stackoverflow.com/feeds/user/31122http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/573913/a-use-for-multiple-inheritance/573949#5739490Answer by Michel for A use for multiple inheritance ?Michel2009-02-21T23:46:08Z2009-02-21T23:46:08Z<p>The following example is mostly something I see often in C++: sometimes it may be necessary due to utility classes that you need but because of their design cannot be used through composition (at least not efficiently or without making the code even messier than falling back on mult. inheritance). A good example is you have an abstract base class A and a derived class B, and B also needs to be a kind of serializable class, so it has to derive from, let's say, another abstract class called Serializable. It's possible to avoid MI, but if Serializable only contains a few virtual methods and needs deep access to the private members of B, then it may be worth muddying the inheritance tree just to avoid making friend declarations and giving away access to B's internals to some helper composition class.</p>
http://stackoverflow.com/questions/389859/sql-native-client-crashes-when-second-connection-is-opened-when-connection-poolin/566758#5667580Answer by Michel for SQL Native Client crashes when second connection is opened when connection pooling is on?Michel2009-02-19T19:19:24Z2009-02-19T19:19:24Z<p>Are you by any chance experiencing the same problem that this person was having: <a href="http://www.mydatabasesupport.com/forums/ms-sqlserver/218008-2003-cluster-sql-2000-connection-pooling-causes-crash.html" rel="nofollow">http://www.mydatabasesupport.com/forums/ms-sqlserver/218008-2003-cluster-sql-2000-connection-pooling-causes-crash.html</a></p>
http://stackoverflow.com/questions/563414/how-do-you-debug-heavily-templated-code-in-c/563445#56344510Answer by Michel for How do you debug heavily templated code in c++?Michel2009-02-19T00:12:05Z2009-02-19T00:12:05Z<p>For the STL at least there are tools available that will output more human-friendly error messages. See <a href="http://www.bdsoft.com/tools/stlfilt.html" rel="nofollow">http://www.bdsoft.com/tools/stlfilt.html</a></p>
<p>For non-STL templates you'll just have to learn what the errors mean. After you've seen them a dozen times it becomes easier to guess what the problem is. If you post them here maybe somebody can help you figure it out.</p>
http://stackoverflow.com/questions/402187/asynchronous-select-db2/562896#5628960Answer by Michel for asynchronous select db2Michel2009-02-18T21:22:44Z2009-02-18T21:22:44Z<p>You didn't tag the question with Java or JDBC, so I don't know if that's all you're interested in. But with ODBC it definitely works and doesn't require threads at all. Actually the SQLExecute function is asynchronous by default, and will return immediately. You have to poll it yourself to see when the return value changes to notify you that the execution is done. I'm surprised if/that Java does it differently.</p>
http://stackoverflow.com/questions/561729/can-the-diamond-problem-be-really-solved/562631#5626310Answer by Michel for Can the Diamond Problem be really solved?Michel2009-02-18T20:13:32Z2009-02-18T20:13:32Z<p>The diamond problem in C++ is already solved: use virtual inheritance. Or better yet, don't be lazy and inherit when it's not necessary (or unavoidable). As for the example you gave, this could be solved by redefining what it means to be capable of driving on the ground or in the water. Does the ability to move through water really define a water-based vehicle or is just something the vehicle is able to do? I'd rather think that the move() function you described has some sort of logic behind it that asks "where am I and can I actually move here?" The equivalent of a <code>bool canMove()</code> function that depends on the current state and the inherent abilities of the vehicle. And you don't need multiple inheritance to solve that problem. Just use a mixin that answers the question in different ways depending on what's possible and takes the superclass as a template parameter so the virtual canMove function will be visible through the inheritance chain.</p>
http://stackoverflow.com/questions/118068/why-doesnt-gcc-optimize-structs/562444#5624440Answer by Michel for Why doesn't GCC optimize structs?Michel2009-02-18T19:18:47Z2009-02-18T19:18:47Z<p>Not saying it's a good idea, but you can certainly write code that relies on the order of the members of a struct. For example, as a hack, often people cast a pointer to a struct as the type of a certain field inside that they want access to, then use pointer arithmetic to get there. To me this is a pretty dangerous idea, but I've seen it used, especially in C++ to force a variable that's been declared private to be publicly accessible when it's in a class from a 3rd party library and isn't publicly encapsulated. Reordering the members would totally break that.</p>
http://stackoverflow.com/questions/559274/any-program-or-trick-to-find-the-definition-of-a-variable/559325#5593251Answer by Michel for Any program or trick to find the definition of a variable?Michel2009-02-18T00:21:26Z2009-02-18T00:21:26Z<p>Grep for common patterns for variable declarations. Example: *, &, > or an alphanumeric followed by one or more whitespace characters then the name of the variable. Or variable name followed by zero or more whitespace characters, then a left parenthesis or a semicolon. Unless it was defined under really weird circumstances (like with some kind of macro), it works every time.</p>
http://stackoverflow.com/questions/540515/named-constructor-and-inheritance/543088#5430881Answer by Michel for Named constructor and inheritanceMichel2009-02-12T20:27:18Z2009-02-12T20:27:18Z<p>It's generally not a good idea to force creation of objects using <code>shared_ptr</code> by hiding the constructors. I'm speaking from personal experience here working with an internal company lib that did exactly that. If you want to ensure people always wrap their allocated objects, just make sure that all arguments and members which store instances of these types expect a <code>shared_ptr</code> or <code>weak_ptr</code> instead of a naked pointer or reference. You might also want to derive these classes from <code>enable_shared_from_this</code>, because in a system where all objects are shared, at some point you'll have to pass the <code>this</code> pointer to one of these other objects' methods, and since they're designed only to accept <code>shared_ptr</code>, you're in pretty bad shape if your object has no <code>internal_weak_this</code> to ensure it isn't destroyed.</p>
http://stackoverflow.com/questions/528409/customizing-assert-macro/529733#5297330Answer by Michel for customizing assert macroMichel2009-02-09T20:18:41Z2009-02-09T20:18:41Z<p>If the code doesn't need to be thread-safe, and if you only want to ignore the assertions "forever" in the sense that they will be ignored after the first time <em>each time</em> the program is run, and not forever in the sense that you ignore it the first time and after that it never fires again for <em>all</em> program runs, then just combine the assertion test with a static bool that's set to false by default.</p>
<pre><code>void someFunc(...)
{
...
static bool bFireAssertion( false );
ASSERT( bFireAssertion || <your assertion test> );
...
}
</code></pre>
<p>then when you want it to stop firing, set bFireAssertion to true from within the debugger. Since it will always be true, the ASSERT will short-circuit and never evaluate your test anymore.</p>
http://stackoverflow.com/questions/519422/what-is-the-best-way-to-replace-or-substitute-if-else-if-else-trees-in-programs/519608#5196082Answer by Michel for What is the best way to replace or substitute if..else if..else trees in programs?Michel2009-02-06T08:59:05Z2009-02-06T08:59:05Z<p>The example given in the question is trivial enough to work with a simple switch. The problem comes when the if-elses are nested deeper and deeper. They are no longer "clear or easy to read," (as someone else argued) and adding new code or fixing bugs in them becomes more and more difficult and harder to be sure about because you might not end up where you expected if the logic is complex.</p>
<p>I've seen this happen lots of times (switches nested 4 levels deep and hundreds of lines long--impossible to maintain), especially inside of factory classes that are trying to do too much for too many different unrelated types.</p>
<p>If the values you're comparing against are not meaningless integers, but some kind of unique identifier (i.e. using enums as a poor man's polymorphism), then you want to use classes to solve the problem. If they really are just numeric values, then I would rather use separate functions to replace the contents of the if and else blocks, and not design some kind of artificial class hierarchy to represent them. In the end that can result in messier code than the original spaghetti.</p>
http://stackoverflow.com/questions/498783/instantiating-a-queue-as-a-class-member-in-c/498806#4988062Answer by Michel for Instantiating a queue as a class member in C++Michel2009-01-31T13:12:14Z2009-01-31T13:12:14Z<p>Your member is an instance, but what you're doing is trying to initialize that instance with a pointer to a newly allocated instance. Either leave the initialization empty (as Ray pointed out) or leave it out of the initialization list of the constructor completely.</p>
<pre><code>SomeClass::SomeClass() {}
</code></pre>
<p>has the same queue initialized as</p>
<pre><code>SomeClass::SomeClass() : queue() {}
</code></pre>
<p>If you really want to allocate it on the heap using new, then your member needs to be declared in the header as:</p>
<pre><code>private:
std::priority_queue<OtherClass>* queue;
</code></pre>
<p>But I would recommend against doing that, unless you plan to let some other class take over ownership of the same instance of queue later and don't want the destructor of SomeClass to free it.</p>
http://stackoverflow.com/questions/497786/why-would-anybody-use-c-over-c/497810#49781013Answer by Michel for Why would anybody use C over C++?Michel2009-01-31T00:24:08Z2009-01-31T00:24:08Z<p>Because they're writing a plugin and C++ has no standard ABI.</p>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/497793#4977931Answer by Michel for What real life bad habits has programming given you?Michel2009-01-31T00:18:54Z2009-01-31T00:18:54Z<p>A couple times I've referred to taking out the garbage as "deleting the trash." I've also merge sorted by length (luckily they're all black so there was no need to make the sort more complex) all of the socks when putting away laundry to find matching pairs faster.</p>
http://stackoverflow.com/questions/497132/is-there-a-built-in-haskell-equivalent-for-cs-stdbind2nd4Is there a built-in Haskell equivalent for C++'s std::bind2nd?Michel2009-01-30T20:31:29Z2009-01-30T20:37:56Z
<p>What I'm missing is the ability to partially apply the second argument of a function rather than the first. This is especially useful when I want to pass the function to something like map, but without having to write a lambda for it each time.</p>
<p>I wrote my own function for this (definition below, just in case there indeed isn't any built-in function for this and anyone else was curious), but I would really like to know if there already exists something in the Prelude for this idiom as I prefer to reuse rather than reinvent.</p>
<p>Here is my definition and a trivial example:</p>
<pre><code>bind2nd :: (a -> b -> c) -> b -> a -> c
bind2nd f b = \a -> f a b
foo :: Int -> Bool -> String
foo n b | b = show n
| otherwise = "blabla"
alwaysN :: Int -> String
alwaysN = bind2nd foo True
</code></pre>
http://stackoverflow.com/questions/484635/are-global-variables-bad/485016#4850161Answer by Michel for Are global variables bad?Michel2009-01-27T20:10:46Z2009-01-27T20:10:46Z<p>Global variables are generally bad, especially if other people are working on the same code and don't want to spend 20mins searching for all the places the variable is referenced. And adding threads that modify the variables brings in a whole new level of headaches.</p>
<p>Global constants in an anonymous namespace used in a single translation unit are fine and ubiquitous in professional apps and libraries. But if the data is mutable, and/or it has to be shared between multiple TUs, you may want to encapsulate it--if not for design's sake, then for the sake of anybody debugging or working with your code.</p>
http://stackoverflow.com/questions/383016/how-do-stl-containers-get-deleted/383292#3832922Answer by Michel for How do stl containers get deleted?Michel2008-12-20T13:04:33Z2008-12-20T13:04:33Z<p>Use either smart pointers inside of the vector, or use boost's ptr_vector. It will automatically free up the allocated objects inside of it. There are also maps, sets, etc.</p>
<p><a href="http://www.boost.org/doc/libs/1_37_0/libs/ptr_container/doc/ptr_vector.html" rel="nofollow">http://www.boost.org/doc/libs/1_37_0/libs/ptr_container/doc/ptr_vector.html</a>
and the main site:
<a href="http://www.boost.org/doc/libs/1_37_0/libs/ptr_container/doc/ptr_container.html" rel="nofollow">http://www.boost.org/doc/libs/1_37_0/libs/ptr_container/doc/ptr_container.html</a></p>
http://stackoverflow.com/questions/379172/to-use-goto-or-not/379423#3794231Answer by Michel for To Use GOTO or Not?Michel2008-12-18T21:46:59Z2008-12-18T21:46:59Z<p>The easiest way to avoid what you are doing here is to put all of this cleanup into some kind of simple structure and create an instance of it. For example instead of:</p>
<pre><code>void MyClass::myFunction()
{
A* a = new A;
B* b = new B;
C* c = new C;
StartSomeBackgroundTask();
MaybeBeginAnUndoBlockToo();
if ( ... )
{
goto Exit;
}
if ( ... ) { .. }
else
{
... // what happens if this throws an exception??? too bad...
goto Exit;
}
Exit:
delete a;
delete b;
delete c;
StopMyBackgroundTask();
EndMyUndoBlock();
}
</code></pre>
<p>you should rather do this cleanup in some way like:</p>
<pre><code>struct MyFunctionResourceGuard
{
MyFunctionResourceGuard( MyClass& owner )
: m_owner( owner )
, _a( new A )
, _b( new B )
, _c( new C )
{
m_owner.StartSomeBackgroundTask();
m_owner.MaybeBeginAnUndoBlockToo();
}
~MyFunctionResourceGuard()
{
m_owner.StopMyBackgroundTask();
m_owner.EndMyUndoBlock();
}
std::auto_ptr<A> _a;
std::auto_ptr<B> _b;
std::auto_ptr<C> _c;
};
void MyClass::myFunction()
{
MyFunctionResourceGuard guard( *this );
if ( ... )
{
return;
}
if ( ... ) { .. }
else
{
...
}
}
</code></pre>
http://stackoverflow.com/questions/377178/how-does-the-standard-new-operator-work-in-c/377192#3771920Answer by Michel for How does the standard new operator work in c++?Michel2008-12-18T08:25:27Z2008-12-18T08:25:27Z<p>Depends on if it's overloaded or not, if you built the app for debugging, if you're using a memory leak detector, if you have some kind of memory pooling scheme, if you have something like the Boehm garbage collector that's marking/unmarking bits, etc., etc. It could be doing a lot of custom stuff inside, or nothing special at all.</p>
http://stackoverflow.com/questions/369877/is-there-a-tool-that-can-visually-map-table-relationships-in-mysql/369941#3699410Answer by Michel for Is there a tool that can visually map table relationships in MySQL?Michel2008-12-15T22:39:08Z2008-12-15T22:39:08Z<p>Altova DatabaseSpy will show them if you are on Windows. If not, the easiest way is to query INFORMATION_SCHEMA (if you're using v5 or later of MySQL) and check out the key column usage statistics for all the tables. This is easy to script.</p>
http://stackoverflow.com/questions/369898/python-dictionary-clear/369928#3699289Answer by Michel for Python dictionary clearMichel2008-12-15T22:32:02Z2008-12-15T22:32:02Z<p>d = {} will create a new instance for d but all other references will still point to the old contents. .clear() will reset the contents, but all references to the same instance will still be correct.</p>
http://stackoverflow.com/questions/368980/passing-a-python-array-to-a-c-vector-using-swig/369891#3698912Answer by Michel for Passing a Python array to a C++ vector using SwigMichel2008-12-15T22:17:57Z2008-12-15T22:17:57Z<p>It depends on if your function is already written and cannot be changed, in which case you may need to check Swig docs to see if there is already a typemap from PyList to std::vector (I think there is). If not, taking PyObject* as the argument to the function and using the Python C API for manipulating lists should work fine. I haven't had any problems with it so far. For self-documentation, I recommend typedef'ing PyObject* to some kind of expected type, like "PythonList" so that the parameters have some meaning.</p>
<p>This may also be useful:</p>
<p><a href="http://stackoverflow.com/questions/276769/how-to-expose-stdvectorint-as-a-python-list-using-swig">http://stackoverflow.com/questions/276769/how-to-expose-stdvectorint-as-a-python-list-using-swig</a></p>
http://stackoverflow.com/questions/338156/table-naming-dilemma-singular-vs-plural-names/338562#3385620Answer by Michel for Table Naming Dilemma: Singular vs. Plural NamesMichel2008-12-03T20:20:57Z2008-12-03T20:20:57Z<p>The system tables/views of the server itself (SYSCAT.TABLES, dbo.sysindexes, ALL_TABLES, information_schema.columns, etc.) are almost always plural. I guess for the sake of consistency I'd follow their lead.</p>
http://stackoverflow.com/questions/210616/c-constructor/329080#3290801Answer by Michel for C++ ConstructorMichel2008-11-30T17:13:20Z2008-11-30T17:13:20Z<p>There are usually some good reasons to use an initialization list. For one, you cannot set member variables that are references outside of the initialization list of the constructor. Also if a member variable needs certain arguments to its own constructor, you have to pass them in here. Compare this:</p>
<pre><code>class A
{
public:
A();
private:
B _b;
C& _c;
};
A::A( C& someC )
{
_c = someC; // this is illegal and won't compile. _c has to be initialized before we get inside the braces
_b = B(NULL, 5, "hello"); // this is not illegal, but B might not have a default constructor or could have a very
// expensive construction that shouldn't be done more than once
}
</code></pre>
<p>to this version:</p>
<pre><code>A::A( C& someC )
: _b(NULL, 5, "hello") // ok, initializing _b by passing these arguments to its constructor
, _c( someC ) // this reference to some instance of C is correctly initialized now
{}
</code></pre>
http://stackoverflow.com/questions/159492/what-languages-have-a-good-gui-api-designer/324747#3247471Answer by Michel for What languages have a good GUI API/Designer?Michel2008-11-27T22:24:33Z2008-11-27T22:24:33Z<p>Interface Builder and Qt Designer are by far the best GUI design tools I've ever used.</p>
http://stackoverflow.com/questions/41453/how-can-i-add-reflection-to-a-c-application/324689#3246892Answer by Michel for How can I add reflection to a C++ application?Michel2008-11-27T21:41:28Z2008-11-27T21:41:28Z<p>I did something like what you're after once, and while it's possible to get some level of reflection and access to higher-level features, the maintenance headache might not be worth it. My system was used to keep the UI classes completely separated from the business logic through delegation akin to Objective-C's concept of message passing and forwarding. The way to do it is to create some base class that is capable of mapping symbols (I used a string pool but you could do it with enums if you prefer speed and compile-time error handling over total flexibility) to function pointers (actually not pure function pointers, but something similar to what Boost has with Boost.Function--which I didn't have access to at the time). You can do the same thing for your member variables as long as you have some common base class capable of representing any value. The entire system was an unabashed ripoff of Key-Value Coding and Delegation, with a few side effects that were perhaps worth the sheer amount of time necessary to get every class that used the system to match all of its methods and members up with legal calls: 1) Any class could call any method on any other class without having to include headers or write fake base classes so the interface could be predefined for the compiler; and 2) The getters and setters of the member variables were easy to make thread-safe because changing or accessing their values was always done through 2 methods in the base class of all objects.</p>
<p>It also led to the possibility of doing some really weird things that otherwise aren't easy in C++. For example I could create an Array object that contained arbitrary items of any type, including itself, and create new arrays dynamically by passing a message to all array items and collecting the return values (similar to map in Lisp). Another was the implementation of key-value observing, whereby I was able to set up the UI to respond immediately to changes in the members of backend classes instead of constantly polling the data or unnecessarily redrawing the display.</p>
<p>Maybe more interesting to you is the fact that you can also dump all methods and members defined for a class, and in string form no less.</p>
<p>Downsides to the system that might discourage you from bothering: adding all of the messages and key-values is extremely tedious; it's slower than without any reflection; you'll grow to hate seeing <code>boost::static_pointer_cast</code> and <code>boost::dynamic_pointer_cast</code> all over your codebase with a violent passion; the limitations of the strongly-typed system are still there, you're really just hiding them a bit so it isn't as obvious. Typos in your strings are also not a fun or easy to discover surprise.</p>
<p>As to how to implement something like this: just use shared and weak pointers to some common base (mine was very imaginatively called "Object") and derive for all the types you want to use. I'd recommend installing Boost.Function instead of doing it the way I did, which was with some custom crap and a ton of ugly macros to wrap the function pointer calls. Since everything is mapped, inspecting objects is just a matter of iterating through all of the keys. Since my classes were essentially as close to a direct ripoff of Cocoa as possible using only C++, if you want something like that then I'd suggest using the Cocoa documentation as a blueprint.</p>
http://stackoverflow.com/questions/324043/how-best-to-switch-from-template-mess-to-clean-classes-architecture-c/324606#3246060Answer by Michel for How best to switch from template mess to clean classes architecture (C++)?Michel2008-11-27T20:33:19Z2008-11-27T20:33:19Z<p>I've often come across legacy templates that were huge and required a lot of time and memory to instantiate, but didn't need to be. In those cases, the easiest way to cut out the fat was to take all of the code that didn't rely on any of the template arguments and hide it in separate functions defined in a normal translation unit. This also had the positive side-effect of triggering fewer recompiles when this code had to be slightly modified or documentation changed. It sounds rather obvious, but it's really surprising how often people write a class template and think that EVERYTHING it does has to be defined in the header, rather than just the code that needs the templated information.</p>
<p>Another thing you might want to consider is how often you clean up the inheritance hierarchies by making the templates "mixin" style instead of aggregations of multiple inheritance. See how many places you can get away with making one of the template arguments the name of the base class that it should derive from (the way <code>boost::enable_shared_from_this</code> works). Of course this typically only works well if the constructors take no arguments, as you don't have to worry about initializing anything correctly.</p>
http://stackoverflow.com/questions/321351/initializing-a-union-with-a-non-trivial-constructor/321569#3215690Answer by Michel for Initializing a union with a non-trivial constructorMichel2008-11-26T17:51:40Z2008-11-26T17:51:40Z<p>You'll have to wait for C++0x to be supported by compilers to get this. Until then, sorry.</p>
http://stackoverflow.com/questions/321068/returning-multiple-values-from-a-c-function/321542#3215421Answer by Michel for Returning multiple values from a C++ functionMichel2008-11-26T17:43:48Z2008-11-26T17:43:48Z<p>Use a struct or a class for the return value. Using std::pair may work for now, but 1) it's inflexible if you decide later you want more info returned; and 2) it's not very clear from the function's declaration in the header what is being returned and in what order. Returning a structure with self-documenting member variable names will likely be less bug-prone for anyone using your function. Putting my coworker hat on for a moment, your divide_result structure is easy for me, a potential user of your function, to immediately understand after 2 seconds. Messing around with ouput parameters or mysterious pairs and tuples would take more time to read through and may be used incorrectly. And most likely even after using the function a few times I still won't remember the correct order of the arguments.</p>
http://stackoverflow.com/questions/317450/why-override-operator/317475#3174751Answer by Michel for Why override operator() ?Michel2008-11-25T14:16:18Z2008-11-25T14:16:18Z<p>Start using <code>std::for_each</code>, <code>std::find_if</code>, etc. more often in your code and you'll see why it's handy to have the ability to overload the () operator. It also allows functors and tasks to have a clear calling method that won't conflict with the names of other methods in the derived classes.</p>
http://stackoverflow.com/questions/315218/c-templates-and-inheritance/315278#3152784Answer by Michel for C++ templates and inheritanceMichel2008-11-24T20:06:31Z2008-11-24T20:16:46Z<p>I hate to tell you but if you're using a list of instances to Control instead of pointers to Control, your buttons will be garbage anyway (Google "object slicing"). If they're lists of pointers, then either make the <code>list<button*></code> into <code>list<control*></code> as others have suggested, or do a copy to a new <code>list<control*></code> from the <code>list<button*></code> and pass <em>that</em> into the function instead. Or rewrite the function as a template.</p>
<p>So if you previously had a function called doSomething that took a list of controls as an argument, you'd rewrite it as:</p>
<pre><code>template <class TControl>
void doSomething( const std::list<TControl*>& myControls ) {
... whatever the function is currently doing ...
}
void doSomethingElse() {
std::list<Button*> buttons;
std::list<Control*> controls;
doSomething( buttons );
doSomething( controls );
}
</code></pre>
http://stackoverflow.com/questions/94227/smart-pointers-or-who-owns-you-baby/384398#384398Comment by Michel on Smart Pointers: Or who owns you baby?Michel2009-05-08T16:03:14Z2009-05-08T16:03:14ZMaybe it becomes less necessary (I'd say scoped_ptr makes it less necessary than this), but it's not going away. Having a swap function doesn't help you at all if you allocate something on the heap and somebody throws before you delete it, or you simply forget.http://stackoverflow.com/questions/94227/smart-pointers-or-who-owns-you-baby/94512#94512Comment by Michel on Smart Pointers: Or who owns you baby?Michel2009-05-08T15:59:20Z2009-05-08T15:59:20ZInstead of creating your own pointer class (hub_ptr), why don't you just pass *this to these objects and let them store it as a reference? Since you even acknowledge that the objects will be destroyed at the same time as the owning class, I don't understand the point of jumping through so many hoops.http://stackoverflow.com/questions/529124/db2-express-c-transactions-through-odbc/562865#562865Comment by Michel on DB2 Express-C transactions through ODBCMichel2009-02-21T14:17:40Z2009-02-21T14:17:40ZWhat kind of errors are you getting? Are you aware that ODBC Transactions are connection-wide? This can cause problems if you're using the same connection for other things simultaneously. I never had any such problems with DB2 on XP.http://stackoverflow.com/questions/566610/as-a-recent-graduate-what-language-should-i-concentrate-on/566788#566788Comment by Michel on As a recent graduate, what language should I concentrate on?Michel2009-02-19T19:47:10Z2009-02-19T19:47:10ZMaybe in the English-speaking countries that's true. I've never worked in a European company, even one that used English as the "business language," that cared that much about it or was stupid enough to turn down a great programmer because their English was poor.http://stackoverflow.com/questions/563414/how-do-you-debug-heavily-templated-code-in-c/563445#563445Comment by Michel on How do you debug heavily templated code in c++?Michel2009-02-19T00:17:41Z2009-02-19T00:17:41ZHere I'll give you a pity pointhttp://stackoverflow.com/questions/563414/how-do-you-debug-heavily-templated-code-in-c/563445#563445Comment by Michel on How do you debug heavily templated code in c++?Michel2009-02-19T00:17:10Z2009-02-19T00:17:10ZGreat minds think alikehttp://stackoverflow.com/questions/562872/getting-a-segfault-excbadaccess-when-deallocating-variables/562885#562885Comment by Michel on Getting a segfault (EXC_BAD_ACCESS) when deallocating variablesMichel2009-02-18T21:26:46Z2009-02-18T21:26:46ZBecause this is what Apple tells you to do ;)
<a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html#//apple_ref/occ/instm/NSObject/dealloc" rel="nofollow">developer.apple.com/documentation/Cocoa/…</a>
http://stackoverflow.com/questions/559274/any-program-or-trick-to-find-the-definition-of-a-variable/559325#559325Comment by Michel on Any program or trick to find the definition of a variable?Michel2009-02-18T00:25:07Z2009-02-18T00:25:07ZYou could always redefine the variable and wait for a compile error to tell you where the previous declaration was. Anything more professional would probably just be "use an IDE."http://stackoverflow.com/questions/555774/reconciling-classes-inheritance-and-c-callbacks/555784#555784Comment by Michel on Reconciling classes, inheritance, and C callbacksMichel2009-02-17T08:46:14Z2009-02-17T08:46:14ZChange _inst_ptr to a (boost, or std::tr1 if you have it) weak_ptr and the singleton accessor to a shared_ptr created from calling .lock on the instance. The last caller to get rid of their instance will free the singleton. This is somewhat similar to the Phoenix pattern.http://stackoverflow.com/questions/540515/named-constructor-and-inheritance/543088#543088Comment by Michel on Named constructor and inheritanceMichel2009-02-17T08:39:44Z2009-02-17T08:39:44ZLook at the shared_ptr.hpp source--specifically the function sp_enable_shared_from_this that is called from the ctor(s) and the nice little trick using the sp_any_pointer dummy.http://stackoverflow.com/questions/479479/getting-your-head-around-other-peoples-code/479496#479496Comment by Michel on Getting your head around other people's codeMichel2009-01-27T00:49:11Z2009-01-27T00:49:11ZI never use UML to design new code, but I also find it extremely useful in visualizing the class hierarchies and relationships of legacy systems written by other people when I have to take over something.http://stackoverflow.com/questions/270917/why-should-i-declare-a-virtual-destructor-for-an-abstract-class-in-c/271075#271075Comment by Michel on Why should I declare a virtual destructor for an abstract class in C++?Michel2008-11-28T19:13:15Z2008-11-28T19:13:15ZAs John above pointed out, what you're suggesting is pretty dangerous. You're relying on the assumption that clients of your interface will never destroy an object knowing only the base type. The only way you could guarantee that if it's nonvirtual is to make the abstract class's dtor protected. http://stackoverflow.com/questions/323816/have-i-completed-this-c-pointers-lists-assignment-stackoverflow-code-review/323975#323975Comment by Michel on Have I completed this C++ pointers / lists assignment? [StackOverflow Code Review? :)]Michel2008-11-27T20:46:50Z2008-11-27T20:46:50ZFrom his/her class it would not be possible because there is no setter for the ListNode* next member. You would either need to add a function to set ListNode::next to the real next ListNode, or else make it public (which is usually a bad idea).
http://stackoverflow.com/questions/308477/c-smart-pointer-performance/309032#309032Comment by Michel on C++ Smart Pointer performanceMichel2008-11-25T20:17:00Z2008-11-25T20:17:00ZWhen I last tested an older version of boost (1.34 I think) with VC6, the compiler optimized out the atomic increment of the refcount for a weak_ptr. That made things run considerably faster, although caused quite a few crashes in the threaded libs.http://stackoverflow.com/questions/315306/is-if-expensive/315316#315316Comment by Michel on Is "IF" expensive?Michel2008-11-24T20:31:31Z2008-11-24T20:31:31ZWhat about x = y ? 1 : 0; It seems like it would generate the same code as the others as well, but I've seen compilers inline one-liner statements like that whereas the if-else equivalent wouldn't be.