User Eduardo Le&#243;n - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T14:21:08Z http://stackoverflow.com/feeds/user/46571 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1810352/logic-programming-online-resources 3 Logic programming online resources Eduardo León 2009-11-27T19:35:20Z 2009-11-27T21:23:01Z <p>I might look like a n00b, but I would like to know whether anyone here in SO knows any good online resources on logic programming. I'm working on a huge scheduling application and I have "reduced" the algorithmic problem to another huge constraint satisfaction problem. Now I want to know how to use these constraints to derive logically equivalent constraints that either</p> <ol> <li>are more easily evaluated than the original constraints</li> <li>reduce the set of possibilities that must be evaluated</li> </ol> <p>Thank you in advance for your help.</p> http://stackoverflow.com/questions/1574142/how-to-interview-a-customer-to-take-requirements 1 How to interview a customer to take requirements? Eduardo León 2009-10-15T18:17:43Z 2009-11-08T02:01:30Z <p>I currently work as a PeopleSoft technical consultant, a title that, in practice, means that I'm a PeopleCode programmer. Documents with specifications somehow arrive to my desk and I just implement what the papers say.</p> <p>However, I'm going to be assigned to a project in which I'm going to be a functional consultant as well, that means that I have to ask the customer what their business processes are and how PeopleSoft should support and enhance these processes. After that, I have to write the specifications themselves, so that technical consultants (myself included) can implement them.</p> <p>I have no problems with business process modeling nor writing specifications, however, I have never been good at interviewing people nor at dealing with people in first place, so I would like to ask you all whether you have some tips that I could take into consideration before the interview ends in a disaster.</p> http://stackoverflow.com/questions/378630/specify-ordinals-of-c-exported-functions-in-a-dll 0 Specify ordinals of C++ exported functions in a DLL Eduardo León 2008-12-18T17:48:35Z 2009-11-02T07:54:33Z <p>I am writing a DLL with mixed C/C++ code. I want to specify the ordinals of the functions I'm exporting. So I created a .DEF file that looks like this</p> <pre><code>LIBRARY LEONMATH EXPORTS sca_alloc @1 vec_alloc @2 mat_alloc @3 sca_free @4 vec_free @5 mat_free @6 ... </code></pre> <p>I would like to specify the ordinals of my C++ functions and class methods too. I have tried using the Dependency Walker to add the mangled names of my functions to the .DEF file:</p> <pre><code> ??0CScalar@@QAE@XZ @25 ??0CScalar@@QAE@O@Z @26 ??0CScalar@@QAE@ABV0@@Z @27 ??1CScalar@@QAE@XZ @28 </code></pre> <p>But this has failed. Any ideas why this could be happening?</p> <p><hr /></p> <p><b>EDIT:</b> kauppi made a good observation, so I'm adding more information to the question.</p> <ul> <li><b>Platform:</b> Windows (and I'm not interested in portability)</li> <li><b>Compiler:</b> Microsoft's C++ compiler (I'm using VS2005)</li> <li><b>Why I want to do this?:</b> Using the ordinals has the advantage of letting me call exported C++ functions from C code.</li> </ul> http://stackoverflow.com/questions/1654425/how-do-i-convince-a-peer-that-algorithms-are-important 3 How do I convince a peer that algorithms are important? Eduardo León 2009-10-31T13:46:17Z 2009-10-31T17:40:47Z <p>A peer of mine is working on a report that displays the weekly (Sunday to Saturday) advance of every employee in our small consultancy firm. There's a piece of code he wrote that shows the columns corresponding to the days in the target week. His algorithm is the following:</p> <ol> <li>Get which day of the week the first day of the month is. If it's Sunday, set a flag to zero; otherwise, set it to one.</li> <li>Iterate through all the days of month. If it's Sunday, increment the flag. Then, if the flag's value is equal to the week to be displayed, show the column corresponding to the current day; otherwise, hide the column.</li> </ol> <p>Of course, the flag indicates what the current week is.</p> <p>I suggested another algorithm:</p> <ol> <li>Get which days of the month are the first (F) and last (L) days of the specified week. For example, the first week of October 2009 starts on Tuesday 1st and ends on Saturday 3rd.</li> <li>Iterate through the columns corresponding to days 1 to F-1, and hide them.</li> <li>Iterate through the columns corresponding to days F to L, and show them.</li> <li>Iterate through the columns corresponding to days L+1 to DaysOfMonth, and hide them.</li> </ol> <p>The "difficult" part in my algorithm is part 1. I mean "difficult" as in "difficult to understand", because the algorithmic complexity of doing it is constant. And my algorithm has the advantage of having tighter loop. My peer's loop does a comparison for every day of the month. Mine doesn't.</p> <p>This was a little example and you might say that over-optimizing here is a bit too paranoid. But his programming style doesn't change a bit when we write actual performance-critical code.</p> <p>His code is also full of these tests:</p> <pre><code>/* doSomething() doesn't change the state of the relevant variables. */ if (condition) { flag++; if (flag &gt; test) doSomething(); } else if (flag &gt;= test) doSomething(); </code></pre> <p>When, of course, it can be done like this:</p> <pre><code>if (flag &gt;= test); doSomething(); if (condition) flag++; </code></pre> <p>What do I do?!?!?!</p> <p><strong>EDIT: I corrected the comparisons in the code samples.</strong></p> http://stackoverflow.com/questions/1024484/optimizing-recursive-calls-over-data-structures 2 Optimizing recursive calls over data structures Eduardo León 2009-06-21T18:35:02Z 2009-10-28T09:15:33Z <p>Is there an algorithm to optimize a highly recursive function into an iteration over a data structure? For example, given the following function...</p> <pre><code>// template &lt;typename T&gt; class BSTNode is defined somewhere else // It's a generic binary search tree. template &lt;typename T, typename R&gt; void in_order(BSTNode&lt;T&gt;* root, R (*routine)(T)) { if (root) { in_order(root-&gt;leftChild); routine(root-&gt;data); in_order(root-&gt;rightChild); } } </code></pre> <p>... is it possible to optimize it into...</p> <pre><code>// template &lt;typename&gt; class Stack is defined somewhere else // It's a generic LIFO array (aka stack). template &lt;typename T, typename R&gt; void in_order(BSTNode&lt;T&gt;* root, R (*routine)(T)) { if (!root) return; Stack&lt;BSTNode*&gt; stack; stack.push(NULL); line1: while (root-&gt;leftChild) { stack.push(root); root = root-&gt;leftChild; } line2: routine(root-&gt;data); if (root-&gt;rightChild) { root = root-&gt;rightChild; goto line1; } else if (root = stack.pop()) goto line2; } </code></pre> <p>(Of course, the difference is that, instead of filling the call stack, the latter fills another stack in the heap.)</p> <p><hr /></p> <p><strong>EDIT:</strong> I meant an algorithm that can be executed by the <em>compiler</em>, so I don't have to optimize it by hand.</p> http://stackoverflow.com/questions/1618551/compiler-error-when-using-nested-operator-overloading-in-c/1618555#1618555 6 Answer by Eduardo León for Compiler error when using nested operator overloading in C++ Eduardo León 2009-10-24T17:18:04Z 2009-10-24T17:18:04Z <p>It should have been:</p> <pre><code>bool URL::operator ==(const URL &amp; u) const { //url is the string instance variable return url == u.GetURL(); } </code></pre> <p>And analogously for the other operators.</p> <p>If you still get compiler errors, perhaps you haven't made <code>GetURL()</code> const as well:</p> <pre><code>std:string URL::GetURL() const { // whatever... } </code></pre> http://stackoverflow.com/questions/1569261/what-is-the-difference-usage-wise-between-defines-macros-structs-and-consts-fun/1569583#1569583 0 Answer by Eduardo León for What is the difference, usage-wise, between defines/macros/structs and consts/funcs/classes? (C++) Eduardo León 2009-10-14T23:38:17Z 2009-10-14T23:38:17Z <p><strong>Parameterless <code>#define</code>s vs. <code>const</code>s:</strong></p> <p>As long as the macro is actually replaced by a constant or a variable that doesn't change, both achieve the same thing. But there are some subtle differences if the former statement doesn't hold. Let's use the following class as an example:</p> <pre><code>class my_class { explicit my_class(int i); explicit my_class(const my_class&amp; copy_from); }; // implementation defined elsewhere, it's irrelevant </code></pre> <p>If you do the following:</p> <pre><code>#define MY_CONST_OBJECT my_class(1) my_class obj1(MY_CONST_OBJECT); my_class obj2(MY_CONST_OBJECT); </code></pre> <p>then the constructor of <code>my_class</code> whose parameter is an <code>int</code> is called twice. And the following code is illegal:</p> <pre><code>my_class&amp; ref1 = MY_CONST_OBJECT; my_class&amp; ref2 = MY_CONST_OBJECT; </code></pre> <p>However, if you do the following:</p> <pre><code>const my_class my_const_object(1); my_class obj1(my_const_object); my_class obj2(my_const_object); </code></pre> <p>then the the constructor of <code>my_class</code> whose parameter is an <code>int</code> is called only once. And the originally illegal code is now legal:</p> <pre><code>my_class&amp; ref1 = my_const_object; my_class&amp; ref2 = my_const_object; </code></pre> <p><strong>Parametric <code>#define</code>s vs. <code>inline</code> functions:</strong></p> <p>As long as the macro parameters are not expressions, both achieve the same thing. But there are some subtle differences if the former statement doesn't hold. Let's take this macro as an example:</p> <pre><code>#define MAX(A,B) = ((A) &lt; (B)) ? (A) : (B) </code></pre> <p>This macro could not take <code>rand()</code> (or any function whose behavior either affects the state of the whole program and/or depends on it) as a parameter, because <code>rand()</code> would be called twice. Instead, using the following function is safe:</p> <pre><code>template &lt; class _Type &gt; _Type max( _Type a, _Type b ) { return (a &lt; b) ? a : b ; } </code></pre> <p><strong><code>struct</code>s vs. <code>class</code>es</strong></p> <p>There is no real difference between <code>struct</code>s and <code>class</code>es other than the former's default access specifier for base classes and members is <code>public</code> and the latter's is <code>private</code>. However, it's uncivilized to declare <code>struct</code>s that have methods and, thus, behavior, and it's also uncivilized to declare <code>class</code>es that only have raw data that can be accessed directly.</p> <p>Declaring a <code>class</code> that is meant to be used as a <code>struct</code>, like this:</p> <pre><code>class my_class { public: // only data members }; </code></pre> <p>is in bad taste. <code>struct</code>s with constructors might have some uses, such as not allowing initialization with trash data, but I would recommend against them as well.</p> http://stackoverflow.com/questions/1533916/how-to-set-up-a-c-function-so-that-it-can-be-used-by-p-invoke/1533969#1533969 1 Answer by Eduardo León for How to set up a C++ function so that it can be used by p/invoke? Eduardo León 2009-10-07T20:24:22Z 2009-10-07T20:24:22Z <p>The C++ compiler modifies the names of your functions to incorporate information about the parameters and return types. This is called name mangling. On the other hand, the C compiler doesn't mangle your function names.</p> <p>You can tell the C++ compiler to work as a C compiler using <code>extern "C"</code>:</p> <pre><code>extern "C" __declspec(dllexport) bool TestFunc { return true; } </code></pre> <p>To call functions from C# using P/Invoke, your names must not be mangled. Therefore, you can actually export C functions to C#. If you want the functionality to be implemented in C++, you can write a C function that just calls the C++ function implementing the functionality.</p> http://stackoverflow.com/questions/1364927/code-golf-reverse-quine 6 Code golf: Reverse quine Eduardo León 2009-09-01T22:18:44Z 2009-10-03T17:58:36Z <p>Write a program that outputs the <strong>reverse</strong> of its source code as a string. If the source is</p> <pre><code>abcd efg </code></pre> <p>(i.e., the C string <code>"abcd\nefg"</code>)</p> <p>Then the output should be</p> <pre><code>gfe dcba </code></pre> <p>(i.e., the C string <code>"gfe\ndcba"</code>)</p> <p>Bonus points for using esoteric languages such as brainf*ck.</p> <p><hr /></p> <p>*EDIT:** Removed the unnecessary \0 characters.+</p> http://stackoverflow.com/questions/909338/what-is-the-worst-commit-message-you-have-ever-authored/1510363#1510363 1 Answer by Eduardo León for What is the WORST commit message you have ever authored? Eduardo León 2009-10-02T15:47:03Z 2009-10-02T15:47:03Z <p>"I'm just a grunt. Don't blame me for this awful PoS."</p> http://stackoverflow.com/questions/1480490/python-interpreter-as-a-c-class/1480578#1480578 2 Answer by Eduardo León for Python interpreter as a c++ class Eduardo León 2009-09-26T06:28:08Z 2009-09-26T06:28:08Z <p>You can, but I'd recommend you not to re-implement a Python interpreter when there is a standard implementation. Use <strong>boost::python</strong> to interface with Python.</p> http://stackoverflow.com/questions/1454843/variable-length-array-of-classes/1454865#1454865 1 Answer by Eduardo León for variable length array of classes. Eduardo León 2009-09-21T14:40:02Z 2009-09-21T14:55:44Z <p>Use an array of POINTERS to objects of your class.</p> <p>Using <code>std::vector</code>s, it could be something like</p> <pre><code>typedef dummie_type * dummie_ptr; typedef vector&lt;dummie_ptr&gt; dummie_array; </code></pre> <p>Of course, you will have to search through all your code to replace a lot of <code>.</code>s with <code>-&gt;</code>s. But that way, you can resize the array without calling the constructor and destructor a lot of times.</p> <p>Here's an example</p> <pre><code>int main(int argc, char* argv[]) { dummie_array my_array(5); // initial size for (int i = 0; i &lt; 5; ++i) my_array[i] = new dummie_type(/* constructor parameters */); my_array.resize(8); for (int i = 5; i &lt; 8; ++i) my_array[i] = new dummie_type(/* constructor parameters */); for (int i = 0; i &lt; 8; ++i) my_array[i]-&gt;do_something(/* member function parameters */); for (int i = 0; i &lt; 8; ++i) delete my_array[i]; return 0; } </code></pre> http://stackoverflow.com/questions/1418348/guidelines-for-gui-design-for-a-risk-analysis-app 2 Guidelines for GUI design for a risk analysis app Eduardo León 2009-09-13T17:42:50Z 2009-09-13T17:52:24Z <p>In my free time, I'm working on a risk analysis application. I have already finished the mathematical and simulation engines, but I'm stuck with the design of the user interface. I want my application to be as easy-to-use as possible for Excel users, but I don't want to make it an Excel add-in, because Excel takes ages to load add-ins. So I'm going to use the old and venerable MFC.</p> <p>I want to make these things easy in my application:</p> <p><strong>Modeling tasks:</strong></p> <ul> <li>Defining probability and uncertainty distributions</li> <li>Defining mathematical relations between the variables</li> <li>Separating uncertainty from variability (second-order risk modeling)</li> <li>Validating the risk model</li> <li>What-if (sensitivity) analysis</li> </ul> <p><strong>Data manipulation/display tasks:</strong></p> <ul> <li>Importing/exporting data from/to Excel and databases</li> <li>Displaying nice graphs to the user</li> </ul> <p>Do you know any guidelines I could take into consideration in the design of the user interface? The only examples I know, <a href="http://www.mpassociates.gr/software/distrib/science/lindo/lingoxpa2.gif" rel="nofollow">LINGO</a> and <a href="http://upload.wikimedia.org/wikipedia/tr/5/5a/Rockwell%5FArena.jpg" rel="nofollow">Rockwell Arena</a>, are actually examples of <em>what NOT to do</em>. Perhaps I will need to include a simple scripting language in the system but, in that case, it will be an option for advanced users, not for everybody.</p> http://stackoverflow.com/questions/374147/what-is-boost-missing/1416461#1416461 2 Answer by Eduardo León for What is Boost missing? Eduardo León 2009-09-12T23:38:14Z 2009-09-12T23:38:14Z <p><strong>boost::coroutines</strong></p> <p>Why not have a call tree or even a call graph instead of a dull call stack?</p> http://stackoverflow.com/questions/1403150/how-do-you-dynamically-allocate-a-matrix/1403157#1403157 7 Answer by Eduardo León for How do you dynamically allocate a matrix? Eduardo León 2009-09-10T02:58:08Z 2009-09-10T03:30:43Z <p>A matrix is actually an array of arrays.</p> <pre><code>int rows = ..., cols = ...; int** matrix = new int*[rows]; for (int i = 0; i &lt; rows; ++i) matrix[i] = new int[cols]; </code></pre> <p>Of course, to delete the matrix, you should do the following:</p> <pre><code>for (int i = 0; i &lt; rows; ++i) delete [] matrix[i]; delete [] matrix; </code></pre> <p><hr /></p> <p>I have just figured out another possibility:</p> <pre><code>int rows = ..., cols = ...; int** matrix = new int*[rows]; if (rows) { matrix[0] = new int[rows * cols]; for (int i = 1; i &lt; rows; ++i) matrix[i] = matrix[0] + i * cols; } </code></pre> <p>Freeing this array is easier:</p> <pre><code>if (rows) delete [] matrix[0]; delete [] matrix; </code></pre> <p>This solution has the advantage of allocating a single big block of memory for all the elements, instead of several little chunks. The first solution I posted is a better example of the <em>arrays of arrays</em> concept, though.</p> http://stackoverflow.com/questions/1355338/fed-up-with-my-programming-job-what-should-i-do 38 Fed up with my programming job: What should I do? Eduardo León 2009-08-31T00:40:28Z 2009-09-02T14:14:22Z <p>When I was a teenager (about 8 years ago), programming used to be fun. That alone led me to study Systems Engineering. (Later, I found that SE wasn't only about programming, but that's another story.) However, my first experiences working as a programmer haven't quite been what I expected. Most of the time, those I work for don't expect me to carefully design my programs before I write them. They seem to think of programming as a physical production process in which the most obvious way to improve productivity is to speed up the process.</p> <p>Writing code that validates data input against business rules is boring, but tolerable. But being forced to do a half-assed job just to finish projects under unrealistic schedules puts me off, to say the least. It's the opposite of what made programming so attractive to me.</p> <p>What do I do to fix this?</p> http://stackoverflow.com/questions/1357807/when-is-better-to-use-c-template/1357943#1357943 2 Answer by Eduardo León for when is better to use c++ template? Eduardo León 2009-08-31T15:13:02Z 2009-08-31T15:13:02Z <p>In the example you provided, everything is OK as long as <code>operator &gt;</code> is defined for the data type whose instances you're comparing.</p> <p>For example, if you define the following class:</p> <pre><code>class fraction { private: int _num, _den; public: fraction(int num, int den) { if (den &gt;= 0) { _num = num; _den = den; } else { _num = -num; _den = -den; } } fraction(const fraction &amp;f) { _num = f._num; _den = f._den; } bool operator &gt; (const fraction &amp;f) const { return (_num * f._den) &gt; (f._num * _den); } bool operator == (const fraction &amp;f) const { return (_num * f._den) == (f._num * _den); } }; </code></pre> <p>Then you can use your template function with instances of this class.</p> <pre><code>int main(int argc, char* argv[]) { fraction a(1,2); // 0.5 fraction b(3,4); // 0.75 assert(GetMax/*&lt;fraction&gt;*/(a,b) == a); return 0; } </code></pre> http://stackoverflow.com/questions/1355803/why-is-the-c-syntax-so-complicated/1355894#1355894 3 Answer by Eduardo León for Why is the C++ syntax so complicated? Eduardo León 2009-08-31T05:14:57Z 2009-08-31T05:14:57Z <p>Baldur:</p> <p>You don't always need <code>&lt;iostream&gt;</code>. The only things that you will always need are:</p> <ol> <li>A <code>main</code> function (or a <code>WinMain</code>, if you're writing Win32 apps).</li> <li>Variables, functions, operators, language constructs (<code>if</code>, <code>while</code>, etc.).</li> <li>The ability to include functionality from libraries into your program.</li> </ol> <p>Everything else is application-specific.</p> <p>As other posters say, the return value of the <code>main</code> function is an error code<sup>1</sup>. If <code>main</code> returns 0, be happy: everything worked OK!</p> <p><sup>1</sup>This is useful when you write programs that "communicate" with other programs. The most simple way that a program can "tell" another whether it executed properly is using an error code.</p> http://stackoverflow.com/questions/1355342/c-creating-and-collecting-structs-in-a-loop/1355387#1355387 0 Answer by Eduardo León for C++ creating and collecting structs in a loop Eduardo León 2009-08-31T00:58:53Z 2009-08-31T00:58:53Z <p>There's no such a thing as an anonymous type in C++. You must define the line struct explicitly, and then you must define the data structure that represents the collection of lines.</p> http://stackoverflow.com/questions/1338683/the-most-abusive-c-youve-ever-seen-used/1338717#1338717 1 Answer by Eduardo León for The most abusive C++ you've ever seen used? Eduardo León 2009-08-27T03:36:15Z 2009-08-27T03:36:15Z <p>I once did templates the C (not C++) way: using <code>#include</code>s, <code>#define</code>s, <code>#ifdef</code>s and recursion at compilation time.</p> http://stackoverflow.com/questions/1297059/c-callback-typedefs-with-stdcall-in-msvc/1297098#1297098 0 Answer by Eduardo León for C++: Callback typedefs with __stdcall in MSVC Eduardo León 2009-08-18T23:23:24Z 2009-08-18T23:23:24Z <p>A function pointer must have information about the calling convention used by the function. If you're pointing to a function that uses the __cdecl calling convention, you must use a __cdecl function pointer. If you're pointing to a function that uses the __stdcall calling convention, you must use a __stdcall function pointer.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1069379#1069379 0 Answer by Eduardo León for What is the worst real-world macros/pre-processor abuse you've ever come across? Eduardo León 2009-07-01T14:19:49Z 2009-07-01T14:19:49Z <p>I have used header files as big macros:</p> <pre><code>// compile-time-caller.h #define param1 ... #define param2 ... #include "killer-header.h" // killer-header.h // uses param1 and param2 </code></pre> <p>I have also created <em>recursive</em> header files.</p> <pre><code>// compile-time-caller.h #define param1 ... #define param2 ... #include "killer-header.h" // killer-header.h" #if ... // conditional taking param1 and param2 as parameters #define temp1 param1 #define temp2 param2 #define param1 ... // expression taking temp1 and temp2 as parameters #define param2 ... // expression taking temp1 and temp2 as parameters #include "killer-header.h" // some actual code #else // more actual code #endif </code></pre> http://stackoverflow.com/questions/756750/swap-the-values-of-two-variables-without-using-third-variable/757225#757225 -3 Answer by Eduardo León for Swap the values of two variables without using third variable Eduardo León 2009-04-16T17:35:41Z 2009-04-24T12:44:31Z <ol> <li>Don't post any answers for interpreted languages. The interpreters are themselves whole programs with lots of variables. So, while there are no variables in your program, there are lots of variables in the program that runs your program.</li> </ol> <p><strong>EDIT:</strong> I didn't mean to offend the sensibility of those of you who use dynamic languages. They are very useful tools, but, to me, the definition of a variable is something that is in the call stack and isn't the address in memory of the instruction the program must return to after the current subroutine finishes. And those nice library functions and thingies you're used to have tons of temporary results. Those temporary results must be stored somewhere in the memory, whether you like to call it a variable or not.</p> <ol> <li>The XOR swap is a very good one. I like it.</li> </ol> <p><strong>EDIT:</strong> The optimal implementation of the XOR swap doesn't involve any temporary results that don't have to be stored in temporary variables (not even in machine code!). This is what I meant. Using the XCHG instruction is a nice alternative.</p> <p><hr /></p> http://stackoverflow.com/questions/740577/sizeof-a-union-in-c-c/740647#740647 0 Answer by Eduardo León for sizeof a union in C/C++ Eduardo León 2009-04-11T19:16:00Z 2009-04-16T00:02:29Z <ol> <li><p>The size of the largest member.</p></li> <li><p>This is why unions usually make sense inside a struct that has a flag that indicates which is the "active" member.</p></li> </ol> <p>Example:</p> <pre><code>struct ONE_OF_MANY { enum FLAG { FLAG_SHORT, FLAG_INT, FLAG_LONG_LONG } flag; union { short x; int y; long long z; }; }; </code></pre> http://stackoverflow.com/questions/740969/c-generics-vs-c-templates-need-a-clarification-about-constraints/741127#741127 2 Answer by Eduardo León for C# generics vs C++ templates - need a clarification about constraints Eduardo León 2009-04-12T01:30:55Z 2009-04-12T01:30:55Z <p><b>C++ templates:</b> The compiler checks whether the arguments satisfy the constraints set by the code. For example:</p> <pre><code>template &lt;typename T, unsigned int dim&gt; class math_vector { T elements[dim]; math_vector&lt;T,dim&gt; operator+ (const math_vector&lt;T,dim&gt;&amp; other) const { math_vector&lt;T,dim&gt; result; for (unsigned int i = 0; i &lt; dim; ++i) result.elements[i] = elements[i] + other.elements[i]; } } struct employee { char name[100]; int age; float salary; } math_vector&lt;int, 3&gt; int_vec; //legal math_vector&lt;float, 5&gt; float_vec; //legal math_vector&lt;employee, 10&gt; employee_vec; //illegal, operator+ not defined for employee </code></pre> <p>In this example, you could create a class, define <code>operator+</code> for it and use it as a parameter for <code>math_vector</code>. Therefore, a template parameter is valid if and only if it satisfies the constraints defined by the template's code. This is very flexible, but results in long compilation times (whether a type satisfies the template's constraints must be checked every time the template is instantiated).</p> <p><b>C# generics:</b> Instead of checking the validity of every particular instantiation, which results in longer compile times and is error prone, you declare explicitly that the generic's arguments must implement a particular interface (a set of methods, properties and operators). Inside the generic's code, you can't call any methods freely, but only those supported by that interface. Every time you instantiate a generic, the runtime doesn't have to check whether the argument satisfies a long set of constraints, but only whether it implements the specified interface. Of course, this is less flexible, but it's less error prone, too. Example:</p> <pre><code>class SortedList&lt;T&gt; where T : IComparable&lt;T&gt; { void Add(T i) { /* ... */ } } class A : IComparable&lt;A&gt; { /* ... */ } class B { int CompareTo(B b) { /* ... */ } bool Equals(B b) { /* ... */ } } SortedList&lt;A&gt; sortedA; // legal SortedList&lt;B&gt; sortedB; // illegal // B implements the methods and properties defined in IComparable, // however, B doesn't explicitly implement IComparable&lt;B&gt; </code></pre> http://stackoverflow.com/questions/462158/developing-for-the-mac 6 Developing for the Mac? Eduardo León 2009-01-20T17:03:54Z 2009-04-08T17:30:33Z <p>As a programmer, I've been pretty much stuck in the Windows world. I invested a lot of time and effort learning MFC, ATL and, recently, .NET (mostly WinForms, I'm not interested in Web development for now). Since I don't have Parallels (and won't buy any software or hardware in the following months), I can't afford to run my old Windows apps now, so I would like to port them to the Mac.</p> <p>My main questions are:</p> <ol> <li>I've read there are two main APIs, Carbon and Cocoa. Which one would you suggest me to learn first? (I don't know Objective-C, but I'm not against learning it.)</li> <li>What are the main development tools (IDEs, debuggers, etc.) for the Mac?</li> <li>Are there any frameworks or RAD tools that help with with window creation (I'd prefer a MFC-like approach to a VB-like drag-and-drop editor).</li> <li>Could my current skill set help me in learning to program for the Mac, or do I have to start basically from zero?</li> </ol> http://stackoverflow.com/questions/725688/is-programming-for-me/725892#725892 1 Answer by Eduardo León for Is programming for me? Eduardo León 2009-04-07T14:03:10Z 2009-04-07T14:03:10Z <p>My answer: Don't worry. Everything will come at its time.</p> <p>Don't worry if you're writing "simple console apps". Be sure you have a deep understanding of the programming tools you're using before learning the fun but complicated stuff: graphics, network programming, drawing windows calling low-level system APIs, etc.</p> <p>Don't worry if you can't code from start to finish. Unless you're writing trivial programs, it's almost impossible. More important than coding from start to finish is writing programs in such a way that maintaining it later won't be a pain in the ass. If you're doing object-oriented programming in C++, learn the design patterns. At first, they might seem unnecessary; however, when you're writing complex programs, they actually help you organize the structure of the program in a logical way without much complication.</p> http://stackoverflow.com/questions/605067/treating-classes-as-first-class-objects/605140#605140 1 Answer by Eduardo León for Treating Classes as First Class Objects Eduardo León 2009-03-03T04:42:07Z 2009-03-03T04:42:07Z <p>C# and Java programs can be aware of their own classes because both .NET and Java runtimes provide <a href="http://en.wikipedia.org/wiki/Reflection_(computer_science)" rel="nofollow">reflection</a>, which, in general, lets a program have information about its own structure (in both .NET and Java, this structure happens to be in terms of classes).</p> <p>There's no way you can afford reflection without relying upon a runtime environment, because a program cannot be self-aware by itself&#42;. But if the execution of your program is managed by a runtime, then the program can have information about itself from the runtime. Since C++ is compiled to native, unmanaged code, there's no way you can afford reflection in C++&#42;&#42;.</p> <p>...</p> <p>&#42; Well, there's no reason why a program couldn't read its own machine code and "try to make conclusions" about itself. But I think that's something nobody would like to do.</p> <p>&#42;&#42; Not strictly accurate. Using horrible macro-based hacks, you can achieve something similar to reflection as long as your class hierarchy has a single root. MFC is an example of this.</p> http://stackoverflow.com/questions/599367/why-can-not-be-overloaded-in-c/599734#599734 2 Answer by Eduardo León for Why can '=' not be overloaded in C#? Eduardo León 2009-03-01T12:18:04Z 2009-03-01T12:18:04Z <p>Actually, overloading <code>operator =</code> would make sense if you could define classes with value semantics and allocate objects of these classes in the stack. But, in C#, you can't.</p> http://stackoverflow.com/questions/598913/most-important-things-about-c-templates-lesson-learned/599034#599034 1 Answer by Eduardo León for Most important things about C++ templates… lesson learned Eduardo León 2009-03-01T01:08:38Z 2009-03-01T01:08:38Z <p>Here are some rules:</p> <ol> <li>Don't write any templates unless you're writing a very, very generic library (STL and Boost are two prominent examples).</li> <li>Don't instantiate any non-trivial template too many times. Instantiating huge template classes is especially overkill. You should consider using inheritance and polymorphism (the simple way, I mean, using virtual functions).</li> <li>If you're writing any templates, knowing when to use <code>const</code>, <code>mutable</code> and <code>volatile</code> will save users of the template both compile and execution time.</li> <li>If you're instantiating any templates, use a good compiler.</li> </ol> http://stackoverflow.com/questions/370972/which-common-features-of-desktop-applications-do-most-web-applications-miss/371010#371010 Comment by Eduardo León on Which common features of desktop applications do most web applications miss? Eduardo León 2009-11-04T03:40:27Z 2009-11-04T03:40:27Z I prefer to control my pixels directly. http://stackoverflow.com/questions/1654425/how-do-i-convince-a-peer-that-algorithms-are-important/1654480#1654480 Comment by Eduardo León on How do I convince a peer that algorithms are important? Eduardo León 2009-11-01T00:41:08Z 2009-11-01T00:41:08Z I know what duct tape programming is. I'm not really into it. http://stackoverflow.com/questions/1654425/how-do-i-convince-a-peer-that-algorithms-are-important Comment by Eduardo León on How do I convince a peer that algorithms are important? Eduardo León 2009-10-31T14:29:21Z 2009-10-31T14:29:21Z I explicitly said that <code>doSomething()</code> does NOT modify the state of the program. http://stackoverflow.com/questions/1654425/how-do-i-convince-a-peer-that-algorithms-are-important/1654457#1654457 Comment by Eduardo León on How do I convince a peer that algorithms are important? Eduardo León 2009-10-31T14:27:48Z 2009-10-31T14:27:48Z Oh, well... In this case, I better use whatever algorithm comes to my mind first. I write PeopleCode, and there's a component in PeopleSoft's architecture that handles JavaScript, CSS, etc. http://stackoverflow.com/questions/1654425/how-do-i-convince-a-peer-that-algorithms-are-important/1654480#1654480 Comment by Eduardo León on How do I convince a peer that algorithms are important? Eduardo León 2009-10-31T14:24:50Z 2009-10-31T14:24:50Z I once wrote a discrete simulation engine when I was in college, and some of the code is actually very contrived. A month ago I found a bug in one of the most contrived parts, and I corrected it without any problems. Of course, that was because the source had enough comments to be understood. http://stackoverflow.com/questions/1654425/how-do-i-convince-a-peer-that-algorithms-are-important/1654456#1654456 Comment by Eduardo León on How do I convince a peer that algorithms are important? Eduardo León 2009-10-31T14:17:54Z 2009-10-31T14:17:54Z What I do is the following: First I come up with an inefficient version of the program, then I move as many comparisons or inner loops as I can out of the main loops. http://stackoverflow.com/questions/1654425/how-do-i-convince-a-peer-that-algorithms-are-important/1654480#1654480 Comment by Eduardo León on How do I convince a peer that algorithms are important? Eduardo León 2009-10-31T14:12:50Z 2009-10-31T14:12:50Z I'm myself not that into duck tape programming. http://stackoverflow.com/questions/1654425/how-do-i-convince-a-peer-that-algorithms-are-important/1654468#1654468 Comment by Eduardo León on How do I convince a peer that algorithms are important? Eduardo León 2009-10-31T14:12:03Z 2009-10-31T14:12:03Z Thank you! I got the comparisons wrong! http://stackoverflow.com/questions/1654444/why-is-there-a-class-keyword-in-c/1654455#1654455 Comment by Eduardo León on Why is there a class keyword in C++? Eduardo León 2009-10-31T14:01:10Z 2009-10-31T14:01:10Z +1 for explaining it better than I could have. http://stackoverflow.com/questions/1654444/why-is-there-a-class-keyword-in-c/1654452#1654452 Comment by Eduardo León on Why is there a class keyword in C++? Eduardo León 2009-10-31T14:00:00Z 2009-10-31T14:00:00Z C++ `struct`s can have public, private and protected members. They can even have friends. http://stackoverflow.com/questions/1654411/2nd-or-3rd-person-comments/1654422#1654422 Comment by Eduardo León on 2nd or 3rd Person Comments Eduardo León 2009-10-31T13:54:42Z 2009-10-31T13:54:42Z +1 for general awesomeness! http://stackoverflow.com/questions/1654411/2nd-or-3rd-person-comments Comment by Eduardo León on 2nd or 3rd Person Comments Eduardo León 2009-10-31T13:47:59Z 2009-10-31T13:47:59Z Sorry, but this deserves to be community wiki. http://stackoverflow.com/questions/1637581/c-mfc-vs-net/1638926#1638926 Comment by Eduardo León on C++ MFC vs .NET? Eduardo León 2009-10-31T04:13:08Z 2009-10-31T04:13:08Z Indeed, MFC wasn't though for today. Back then, we couldn't afford downloading such a massive framework as .NET in every computer. We couldn't afford managed environments either. Java was the proof. Now, everything has changed. The main advantages of MFC have disappeared and while the main disadvantages remain. Having this in mind, .NET is the future. http://stackoverflow.com/questions/1637581/c-mfc-vs-net/1638289#1638289 Comment by Eduardo León on C++ MFC vs .NET? Eduardo León 2009-10-31T04:09:00Z 2009-10-31T04:09:00Z I don't understand why the downvotes. Myself, I upvoted this. This is actually a good answer in the sense that it shows something that other answers didn't focus on: the main limitations of both frameworks. http://stackoverflow.com/questions/1641533/why-does-derivative-trading-position-always-require-c-knowledge Comment by Eduardo León on Why does derivative trading position always require C++ knowledge? Eduardo León 2009-10-29T04:04:17Z 2009-10-29T04:04:17Z I wish I hadn't been a teenager in the 90s.