User paercebal - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T01:54:46Zhttp://stackoverflow.com/feeds/user/14089http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/844768/how-is-stl-iterator-equality-established/1587701#15877010Answer by paercebal for How is STL iterator equality established?paercebal2009-10-19T09:21:24Z2009-10-19T09:21:24Z<blockquote>
<p><b>Daniel asked:</b>
I was wondering, how is equality (==) established for STL iterators? Is it a simple pointer comparison (and thus based on addresses) or something more fancy?</p>
</blockquote>
<p>It depends on implementation. Right now, on Visual C++ 2008, I see the following code (for the list iterator):</p>
<pre><code>bool operator==(const _Myt_iter& _Right) const
{ // test for iterator equality
#if _HAS_ITERATOR_DEBUGGING
_Compat(_Right);
#else
_SCL_SECURE_TRAITS_VALIDATE(this->_Has_container() && this->_Same_container(_Right));
#endif /* _HAS_ITERATOR_DEBUGGING */
return (_Ptr == _Right._Ptr);
}
</code></pre>
<p>You'll see above that there is both code for verification of iterator validity, and <code>_Ptr</code> being a pointer to a list node.</p>
<p>So I guess there is both verification, and simple, raw pointer comparison.</p>
<blockquote>
<p><b>Daniel asked:</b>
If I have two iterators from two different list objects and I compare them, will the result always be false?</p>
</blockquote>
<p>Until now, it appears the standard was somewhat unclear on the subject. Apparently, they will explicitly write that this kind of operation has undefined results:</p>
<p>Quoting: <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-active.html#446" rel="nofollow">http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-active.html#446</a></p>
<blockquote>
<p><b>The result of using any iterator operation</b> (24.2.1 [input.iterators], 24.2.2 [output.iterators], 24.2.3 [forward.iterators], 24.2.4 [bidirectional.iterators], 24.2.5 [random.access.iterators]) <b>that uses two iterator values as arguments</b> (footnote) <b>which were obtained from two different ranges</b> r1 and r2 (including their past-the-end values) which are not subranges of one common range <b>is undefined</b>, unless explicitly described otherwise.</p>
<p>footnote) Among others these operations are ==, <, binary -, and copy assignment</p>
</blockquote>
<p>So I guess it is evil to compare iterator from different containers...
^_^</p>
<blockquote>
<p><b>Daniel asked:</b>
What about if I compare a valid value with one that's out of range? Is that always false?</p>
</blockquote>
<p>Same as above.</p>
http://stackoverflow.com/questions/75538/hidden-features-of-c/78128#7812862Answer by paercebal for Hidden Features of C++?paercebal2008-09-16T22:50:52Z2009-09-23T12:31:41Z<p>I agree with most posts there: C++ is a multi-paradigm language, so the "hidden" features you'll find (other than "undefined behaviours" that you should avoid at all cost) are clever uses of facilities.</p>
<p>Most of those facilities are not build-in features of the language, but library-based ones.</p>
<p>The most important is the <strong>RAII</strong>, often ignored for years by C++ developers coming from the C world. <strong>Operator overloading</strong> is often a misunderstood feature that enable both array-like behaviour (subscript operator), pointer like operations (smart pointers) and build-in-like operations (multiplying matrices.</p>
<p>The use of <strong>exception</strong> is often difficult, but with some work, can produce really robust code through <strong>exception safety</strong> specifications (including code that won't fail, or that will have a commit-like features that is that will succeed, or revert back to its original state).</p>
<p>The most famous of "hidden" feature of C++ is <strong>template metaprogramming</strong>, as it enables you to have your program partially (or totally) executed at compile-time instead of runtime. This is difficult, though, and you must have a solid grasp on templates before trying it.</p>
<p>Other make uses of the multiple paradigm to produce "ways of programming" outside of C++'s ancestor, that is, C.</p>
<p>By using <strong>functors</strong>, you can simulate functions, with the additional type-safety and being state-full. Using the <strong>command</strong> pattern, you can delay code execution. Most other <strong>design patterns</strong> can be easily and efficiently implemented in C++ to produce alternative coding styles not supposed to be inside the list of "official C++ paradigms".</p>
<p>By using <strong>templates</strong>, you can produce code that will work on most types, including not the one you thought at first. You can increase type safety,too (like an automated typesafe malloc/realloc/free). C++ object features are really powerful (and thus, dangerous if used carelessly), but even the <strong>dynamic polymorphism</strong> have its static version in C++: the <strong>CRTP</strong>.</p>
<p>I have found that most "<em>Effective C++</em>"-type books from Scott Meyers or "<em>Exceptional C++</em>"-type books from Herb Sutter to be both easy to read, and quite treasures of info on known and less known features of C++.</p>
<p>Among my preferred is one that should make the hair of any Java programmer rise from horror: In C++, <strong>the most object-oriented way to add a feature to an object is through a non-member non-friend function, instead of a member-function</strong> (i.e. class method), because:</p>
<ul>
<li><p>In C++, a class' interface is both its member-functions and the non-member functions in the same namespace</p></li>
<li><p>non-friend non-member functions have no privileged access to the class internal. As such, using a member function over a non-member non-friend one will weaken the class' encapsulation.</p></li>
</ul>
<p>This never fails to surprise even experienced developers.</p>
<p>(Source: Among others, Herb Sutter's online Guru of the Week #84: <a href="http://www.gotw.ca/gotw/084.htm" rel="nofollow">http://www.gotw.ca/gotw/084.htm</a> )</p>
http://stackoverflow.com/questions/1450810/linux-vs-windows-programming/1451589#1451589-3Answer by paercebal for Linux vs Windows Programming?paercebal2009-09-20T17:56:36Z2009-09-20T23:18:48Z<p><b>It's so much easier on Windows...</b></p>
<p>And I have a Linux at home, and I code at home, so I had <i>a lot of time</i> to experiment with alternatives.</p>
<h2>Edit</h2>
<p>I'm writing this now because at least one commenter did not bother to read the whole answer before commenting and potentially downvoting it. For example:</p>
<blockquote>
<p>Hey paercebal, I would read your answer in full, if it would have more substance than rant. [...] for me. But, if you answer somebody's text, you definitely should read the whole thing. <i>[extract from ypnos' comment]</i></p>
</blockquote>
<p>I guess it means that ypnos did not bother to read my post, but (wrongly) accuses me of the same crime about a comment.</p>
<p>Anyway, for the downvoters out there, please:</p>
<ol>
<li><b>Don't comment if you did not read the whole post.</b> Thank you. Yes ypnos, this is for you.</li>
<li><b>Don't comment if you didn't read the original question.</b> The author asked if it was harder to develop on Linux than on Windows. Sorry if I committed the crime of answering yes.</li>
<li><b>Don't comment about how there is choice on Linux.</b> Everyone knows that. I know that. I even tried that. Read again the question. Write your own answer.</li>
<li><b>Don't comment about great tools if I already wrote I tried them and wasn't impressed in my post</b> You're just showing you did ignore my post.</li>
<li><b>Don't comment if a full answer would be better.</b> The question needs viewpoints from multiple sources, so please write down your own experience instead of doubting mine.</li>
</ol>
<h2>Back to the subject: The IDEs</h2>
<p>On Linux, I tried the following:</p>
<ul>
<li>KDevelop</li>
<li>Anjunta</li>
<li>Eclipse</li>
<li>Code::Blocks</li>
<li>etc. (miscellaneous generic editors)</li>
</ul>
<p>Nothing compares to Visual Studio:</p>
<ol>
<li>Projects are eons easier to create and maintain</li>
<li>The compiler is very very good (Visual C++ 6 is <i>a long time ago</i>).</li>
<li>The text editor is very cool, including Intellisense</li>
<li>Debugging is so much easier I don't even consider debugging a feature on Linux.</li>
</ol>
<p>People will laugh at the fact Visual Studio is the "on tree that does almost anything", but then, it means that it works <b>now</b> for almost anything you want to do (and for most people, this means more than everything).</p>
<p>And I know you care about productivity and results.</p>
<p>In my personal case, I've had only ONE rare case where something worked on Linux, and not with Visual Studio, and as far as I see it, I just don't care about it. I'll use Visual Studio anyway even if I have 10 more of that cases.</p>
<p>At home, I have a Linux system, and have struggled to find a decent IDE (sorry, but using console tools is just a pain in the @ss). I tried Anjuta, as well as KDevelop and Eclipse, but finally settled on Code::Blocks, which I consider the best tool.</p>
<p>And Code::Blocks is nowhere near Visual Studio.</p>
<p>(Still, Kudos for the Code::Blocks developers...)</p>
<p>MonoDevelop could be cool, but I am mainly a C++ developer, and MonoDevelop is about C# (which is a worthy language, but then, I'm so much in love with RAII...)</p>
<h2>The Tools</h2>
<p>The Tools...</p>
<p><b>Muaaah ah ah ah!</b></p>
<p>Sorry for the outburst, but <b>I'm not an admin: I'm a coder.</b></p>
<p>I don't care about the full divine power of console tools that will do everything and more for me, if only I knew what existed and what it did.</p>
<p>The last thing I want in my life is opening a Vi console, EMACS, or using the autoconf framework.</p>
<p>Sorry, I can't bear the complexity, and don't want my "hello world" projects polluted by hundred of useless files I don't care about: The question is about "<i>easiness of developing on Windows vs. Linux</i>", not about "<i>Hey, your Linux box can do me coffee, too, with the right bash script!</i>".</p>
<p>The documentation could be cool, but then, nothing is centralized, and when it is, it's a console documentation (MAN is a pain to use, sorry). Just reading the automake/autoconf doc made turn away in disgust, and search for an IDE. JAM, BJAM CMAKE or whatever would be cool, but then, I don't care about the new Nth process of compilation some people reinvented because the existing (N-1)th did not work like they liked.</p>
<p>I have the strong impression that instead of updating MAKE to read decent makefiles (and not the disgusting mess it is now), people keep on producing console tools that produces files that are used by console tools that will produce scripts that will call g++ to compile your files.</p>
<p>Layers upon layers. <i>Pleeeeaaaaaase...</i></p>
<p><b>The major reason, I guess, is that Visual Studio produces projects that works right out-of-the-box.</b></p>
<p>You can then rely on the GUI to learn about features, and make project changes, and if you need to automate project changes (as I did recently on 200 projects that needed some project cleaning), you can still examine project files (XML files!) to determine all viable options, and modify them.</p>
<p>On Linux, this is the contrary, you must know everything out-of-the-box before even starting a project, and while autoconf/automake seemed a good idea, the pollution of your "Hello World" project with unnumerable files is such you can't believe someone had the guts to produce such tools.</p>
<p>So, people could say perhaps that I'm spoiled by having developed on Windows.</p>
<p>Ok, I'll accept that. In fact, I assume that. Again, I'm a coder, not an admin.</p>
<p>And then, everyone I know is either "<i>you should learn VI because it's the one editor that works everywhere</i>" or "<i>I develop and test on Windows and produce the final binaries on Linux</i>". And I'm talking about professional development, where only our Linux/Solaris binaries are used by our clients. So, are we all wrong?</p>
<h2>The API</h2>
<p>Someone mentionned the API, and the fact WinAPI is complicated, so I guess I'll speak about my experience about it.</p>
<p>WinAPI is not complicated.</p>
<p>The only problem I have with WinAPI is that it is C (I'm a C++ coder), and that its GUI framework is disgustingly hard to use compared with other recent GUI frameworks like GTKmm, QT, or even Swing on Java, or the equivalent on .NET.</p>
<p>But for other tasks, it is as easy as any other frameworks to use (because it's C, mainly).</p>
<ul>
<li>Wanna create files? Look at CreateFile (I'm not kidding).</li>
<li>Wanna create a thread? Look at CreateThread (again, no kidding).</li>
</ul>
<p>MSDN is a very good reference, but that will not be enough, as you must at least spend some time reading the major API functions for A to Z because starting.</p>
<p>WinAPI is an old framework (30 years?), but then, it works.</p>
<p>Just as everything else, avoid it if you're doing cross plateform code. And as everything else, avoid using undocumented features. And even then, Microsoft apparently does an impressive job to maintain undocumented features (try Raymond Chen's blog for more info on Win API).</p>
http://stackoverflow.com/questions/1451153/c-templates-error/1451684#14516840Answer by paercebal for C++ Templates Errorpaercebal2009-09-20T18:36:26Z2009-09-20T18:36:26Z<p>The reason for your problem lies with file organisation in C++.</p>
<h2>About headers and sources</h2>
<p>Sources are files that are compiled into binary "object files", and then linked together to produce the final binary (either a library or an executable).</p>
<p>But for one source to use the code defined in another source, they must share the "declarations" of the code. Thus, the declaration must be put in shared files we will call header files.</p>
<p>Usually, the code in headers is not "true code", only declaration of the existence of this true code.</p>
<p>This is what you did with your custom vector: Put the declaration on the header, and the implementation on the source, and include the header in the main.</p>
<h2>About inlining</h2>
<p>Now, some "true code" can be put inside the headers, usually by prefixing it with the keyword "inline".</p>
<p>Again, this is not really true code: The compiler and the linker will figure what to do with it, but it can either:</p>
<ul>
<li>Move the function code into an "object file" and have all the other "object files" link with it there</li>
<li>Inline the code where the inlined function is used</li>
<li>The two solution above at the same time</li>
</ul>
<p>But the inlined function could well disappear from the binary if it is not used.</p>
<h2>About templates</h2>
<p>Templates are somewhat like declaration: They are not "true code", but "potential code". It's even more "potential" than inline code because the template code will need to be instanciated for the right template parameters.</p>
<p>Like for any other code, to use a template code, your source file must have access to the declaration. But in this case, <b>the declaration of a template is both the "potential declaration" and the "potential implementation"</b>, which will be instanciated by the compiler for the right types you're using.</p>
<p>There are other ways to work with templates, but this is the way that will always work.</p>
<h2>One last advice</h2>
<p>When working with templates (or inlined code) it can be very very convenient to break down the header into multiple files (for example, when dealing with circulary dependancies of declaration).</p>
<p>Example:</p>
<p>file: MyObject.hpp</p>
<pre><code>#include <MyObject_header.hpp>
#include <MyObject_source.hpp>
</code></pre>
<p>file: MyObject_header.hpp</p>
<pre><code>class MyObject
{
// Etc.
} ;
</code></pre>
<p>file: MyObject_source.hpp</p>
<pre><code>#include <MyObject_header.hpp>
MyObject::MyObject()
{
// etc.
}
// etc.
</code></pre>
http://stackoverflow.com/questions/1449525/c-operator-overloading-memory-question/1449783#14497832Answer by paercebal for c++ operator overloading memory questionpaercebal2009-09-19T23:25:35Z2009-09-19T23:25:35Z<h2>C++ : RAII and Temporaries</h2>
<p>You're right about objects on stack being destroyed once going out of scope.</p>
<p>But you ignore that C++ will use temporary objects are necessary. You must learn when a temporary variable will be created (and then optimized away) by the compiler for your code to work.</p>
<h2>Temporary Objects</h2>
<p>Note that in the following, I'm describing a very simplified "pure" viewpoint of what's happening: Compilers can and will do optimizations, and among them, will remove useless temporaries... But the behavior remains the same.</p>
<h3>Integers?</h3>
<p>Let's start slowly: What is supposed to happen when you play with integers:</p>
<pre><code>int a, b, c, d ;
// etc.
a = b + (c * d) ;
</code></pre>
<p>The code above could be written as:</p>
<pre><code>int a, b, c, d ;
// etc.
int cd = c * d ;
int bcd = b + cd ;
a = bcd ;
</code></pre>
<h3>Parameters by value</h3>
<p>When you call a function with a parameter passed "by value", the compiler will make a temporary copy of it (calling the copy constructor).
And if you return from a function "by value", the compiler will, again, make a temporary copy of it.</p>
<p>Let's imagine an object of type T. The following code:</p>
<pre><code>T foo(T t)
{
t *= 2 ;
return t ;
}
void bar()
{
T t0, t1 ;
// etc.
t1 = foor(t0) ;
}
</code></pre>
<p>could be written as the following inlined code:</p>
<pre><code>void bar()
{
T t0, t1 ;
// etc.
T tempA(t1) // INSIDE FOO : foo(t0) ;
tempA += 2 ; // INSIDE FOO : t *= 2 ;
T tempB(tempA) // INSIDE FOO : return t ;
t1 = tempB ; // t1 = foo...
}
</code></pre>
<p>So, despite the fact you don't write code, calling or returning from a function will (potentially) add a lot of "invisible code", needed to pass data from one level of the stack to the next/previous.</p>
<p><i>Again, you need to remember that the C++ compiler will optimize away most temporary, so what could be seen as an innefficient process is just an idea, nothing else.</i></p>
<h2>About your code</h2>
<p>Your code will leak: You "new" an object, and don't delete it.</p>
<p>Despite your misgivings, the right code should be more like:</p>
<pre><code>Point Point::operator+ (Point a)
{
Point c = Point(this->x+a.x,this->y+ a.y) ;
return c ;
}
</code></pre>
<p>Which with the following code:</p>
<pre><code>void bar()
{
Point x, y, z ;
// etc.
x = y + z ;
}
</code></pre>
<p>Will produce the following pseudo code:</p>
<pre><code>void bar()
{
Point x, y, z ;
// etc.
Point tempA = z ; // INSIDE operator + : Point::operator+ (Point a)
Point c = z ; // INSIDE operator + : Point c = Point(this->x+a.x,this->y+ a.y) ;
Point tempB = c ; // INSIDE operator + : return c ;
x = tempB ; // x = y + z ;
}
</code></pre>
<h2>About your code, version 2</h2>
<p>You make too much temporaries. Of course, the compiler will probably remove them, but then, no need to take sloppy habits.</p>
<p>You should at the very least write the code as:</p>
<pre><code>inline Point Point::operator+ (const Point & a)
{
return Point(this->x+a.x,this->y+ a.y) ;
}
</code></pre>
http://stackoverflow.com/questions/415994/boost-thread-tutorials7Boost Thread tutorialspaercebal2009-01-06T10:05:51Z2009-09-18T11:35:57Z
<p>Not really a question, more of a reference list:</p>
<p>Boost.Thread was heavily modified since 1.34, to conform to upcoming C++0x standard. Thus, most tutorials I can find on the web can be considered obsolete.</p>
<p>Today, Boost's version is 1.37, and the only links I found on the web were:</p>
<ol>
<li>Boost 1.37 Threads <a href="http://www.boost.org/doc/libs/1_37_0/doc/html/thread.html" rel="nofollow">http://www.boost.org/doc/libs/1_37_0/doc/html/thread.html</a></li>
<li>What's New in Boost Threads? Recent changes to the Boost Thread library
<a href="http://www.ddj.com/cpp/211600441" rel="nofollow">http://www.ddj.com/cpp/211600441</a></li>
<li>C++ - Thread mutex question <a href="http://en.allexperts.com/q/C-1040/2008/12/Thread-mutex-question.htm" rel="nofollow">http://en.allexperts.com/q/C-1040/2008/12/Thread-mutex-question.htm</a> (<i>not sure about this one</i>)</li>
</ol>
<p><b>Do you know of other, unreferenced Boost 1.37 Thread tutorials (including books)?</b></p>
<p>Thanks,</p>
http://stackoverflow.com/questions/1432777/using-shared-libraries-vs-single-executable/1435290#14352901Answer by paercebal for using shared libraries vs single executablepaercebal2009-09-16T20:30:30Z2009-09-16T21:06:04Z<p>After re-reading your question, I re-edited my answer.</p>
<h2>Dissecting your colleague arugments</h2>
<p>If he believes that splitting your code into shared libraries will improve code modularity, testability and reuse, then I guess that this means he believes you have some problems with your code, and that enforcing a "shared library" architecture will correct it.</p>
<h3>Modularity?</h3>
<p>Your code must have undesired interdependencies that would not have happened with a cleaner separation between "library code" and "code using library code".</p>
<p>Now, this can be achieved through static libraries, too.</p>
<h3>Testing?</h3>
<p>Your code could be tested better, perhaps building unit tests for each separate shared library, automated at each compilation.</p>
<p>Now, this can be achieved through static libraries, too.</p>
<h3>Reuse of code?</h3>
<p>Your colleague would like to reuse some code that is not exposed because hidden in the sources of your monolithic application.</p>
<h3>Conclusion</h3>
<p>The points 1 and 2 can still be achieved with static libraries. The 3 would make shared libraries mandatory.</p>
<p>Now, if you have more than one depth of library linking (I'm thinking about linking together two static libraries which alread were compiled linking the other libraries), this can be complex. On Windows, this leads to error to link as some functions (usually the C/C++ runtime functions, when linked with statically) are referenced more than once, and the compiler can't choose which function to call. I don't know how this work on Linux, but I guess this could happen, too.</p>
<h2>Dissecting your own arguments</h2>
<p>Your own arguments are somewhat biased:</p>
<h3>Burden of compilation/linking of shared libraries?</h3>
<p>The burden of compiling and linking to shared libraries, compared to compiling and linking to static libraries is non-existent. So this argument has no value.</p>
<h3>Dynamicaly loading/unloading?</h3>
<p>Dynamically loading/unloading a shared library could be a problem in a very limited use case. In normal cases, the OS loads/unloads the library when needed without your intervention, and anyway, your performance problems lie elsewhere.</p>
<h3>Exposing C++ code with C interfaces?</h3>
<p>As for using a C-function interface for you C++ code, I fail to understand: You already link together static libraries with C++ interface. Linking shared libraries is no different.</p>
<p>You would have a problem if you had different compilers to produce each libraries of your application, but this is not the case, as you already link statically your libraries.</p>
<h3>A single file binary is easier?</h3>
<p>You're right.
On Windows, the difference is negligible, but then, there is still the problem of DLL-Hell, which disappears if you add the version to your library names or work with WinXP.
On Linux, in addition to the Windows problem above, you have the fact that by default, the shared libraries need to be in some system default directories to be useable, so you'll have to copy them there at install (which can be a pain...) or change some default environment settings (which can be a pain, too...)</p>
<h2>Conclusion: Who is right?</h2>
<p>Now, your problem is not "is my colleague is right ?". He is. As you are, too.</p>
<p>Your problem is:</p>
<ol>
<li>What do you really want to achieve?</li>
<li>is the work necessary for this task worth it?</li>
</ol>
<p>The first question is very important, as it seems to me that your arguments and your colleague's arguments are biased to lead to the conclusion that seems more natural for each of you.</p>
<p>Put it in another wording: Each of you already know what the ideal solution should be (according to each viewpoint) and each of you stacks up arguments to reach this solution.</p>
<p>There is no way to answer that hidden question...</p>
<p>^_^</p>
http://stackoverflow.com/questions/1434937/namespace-functions-versus-static-methods-on-a-class/1435105#14351052Answer by paercebal for Namespace + functions versus static methods on a classpaercebal2009-09-16T19:51:06Z2009-09-16T19:51:06Z<p><b>By default, use namespaced functions.</b></p>
<p>Classes are to build objects, not to replace namespaces.</p>
<h2>In Object Oriented code</h2>
<p>Scott Meyers wrote a whole Item for one of his Effective C++ books on this topic, something like "Prefer non-friend non-member functions to member functions". I found an online reference to this principle in an article from Herb Sutter: <a href="http://www.gotw.ca/gotw/084.htm" rel="nofollow">http://www.gotw.ca/gotw/084.htm</a></p>
<p>The important thing to know is that: <b>In C++ functions in the same namespace than a class belong to that class' interface.</b> (because <a href="http://en.wikipedia.org/wiki/Argument_dependent_name_lookup" rel="nofollow">ADL</a> will search those functions when resolving function calls)</p>
<p>namespaced functions, unless declared "friend" have no access to the class' internals, whereas static methods have.</p>
<p>This means, for example, that when maintaining your class, if you need to change your class' internals, you will need to search for side effects in all its methods, including the static ones.</p>
<h2>Extension I</h2>
<p>Adding code to a class' interface.</p>
<p>In C#, you can add methods to a class even if you have no access to it. But in C++, this is impossible.</p>
<p>But, still in C++, you can still add a namespaced function, even to a class someone wrote for you.</p>
<p>See from the other side, this is important when designing your code, because by putting your functions in a namespace, you will authorize your users to increase/complete the class' interface.</p>
<h2>Extension II</h2>
<p>A side-effect of the previous point, it is impossible to declare static methods in multiple headers. Every methods must be declared in the same class.</p>
<p>For namespaces, functions from the same namespace can be declared in multiple headers (the almost-standard swap function is the best example of that).</p>
<h2>Extension III</h2>
<p>The basic cooless of a namespace is that in some code, you can avoid mentioning it, if you use the keyword "using":</p>
<pre><code>#include <string>
#include <vector>
// Etc.
{
using namespace std ;
// Now, everything from std is accessible without qualification
string s ; // Ok
vector v ; // Ok
}
string ss ; // COMPILATION ERROR
vector vv ; // COMPILATION ERROR
</code></pre>
<p>And you can even limit the "pollution" to one class:</p>
<pre><code>#include <string>
#include <vector>
{
using std::string ;
string s ; // Ok
vector v ; // COMPILATION ERROR
}
string ss ; // COMPILATION ERROR
vector vv ; // COMPILATION ERROR
</code></pre>
<p>This "pattern" is mandatory for proper use of the almost-standard swap idiom.</p>
<p>And this is impossible to do with static methods in classes.</p>
<p>So, C++ namespaces have their own semantics.</p>
<p>But it goes further, as you can combine namespaces in a way similar to inheritance.</p>
<p>For example, if you have a namespace A with a function AAA, a namespace B with a function BBB, you can declare a namespace C, and bring AAA and BBB in this namespace with the keyword using.</p>
<h2>Conclusion</h2>
<p>Namespaces are for namespaces.
Classes are for classes.</p>
<p>C++ was designed so each concept is different, and is used differently, in different cases, as solution to different problems.</p>
<p>Don't use classes when you need namespaces.</p>
<p>And in you case, you need namespaces.</p>
http://stackoverflow.com/questions/185624/static-variables-in-an-inlined-function/189162#1891623Answer by paercebal for static variables in an inlined functionpaercebal2008-10-09T20:51:02Z2009-09-16T19:19:55Z<p>I guess you're missing something, here.</p>
<h2>static?</h2>
<p>Declaring a function static will make it "hidden" in its compilation unit. If you declare this static functions in a header, then all the compilation units units including this header will have their own copy of the function (and possibly, of the static variables inside).</p>
<p>This means that if you have a static function (or even a global object/variable), then this function will exist in each compilation unit (i.e. CPP file) that includes the header where this static function is declared. I have yet to see cases (but some rare debug corner cases) where this is something you want.</p>
<h2>inline?</h2>
<p>Declaring it inline makes it a candidate for inlining (not that it does not mean a lot nowadays in C++, as the compiler will inline or not, sometimes ignoring the fact the keyword inline is present or absent).</p>
<p>In a header, its has an interesting side effect: The inlined function can be defined multiple times in the same module, and the linker will simply join "them" into one (if they were not inlined for compiler's reason).</p>
<p>This has the advantage of "static" (i.e. it can be defined in a header) without its flaws (it exists at most once if it is not inlined)</p>
<h2>static + inline?</h2>
<p>Mixing inline and static will then have the consequences you described (even if the function is inlined, the static variable inside won't be, and you'll end with as much static variables as you have compilation units including the definition of your static functions).</p>
<p><strong>Anyway, what's the point declaring your function static in C++?</strong></p>
<p>Because it should be private? If so, don't declare it in a header (only in one CPP), or even better, use C++'s idiom for that (define it inside an anonymous namespace inside the CPP file).</p>
<p>(Note that I'm talking about functions, not methods: static methods have their uses in C++)</p>
<h2>Answer to author's additionnal question</h2>
<blockquote>
<p>Since I wrote the question I tried it out with Visual Studio 2008. I tried to turn on all the options that make VS act in compliance with standards, but it's possible that I missed some. These are the results:</p>
<p>When the function is merely "inline", there is only one copy of the static variable.</p>
<p>When the function is "static inline", there are as many copies as there are translation units.</p>
<p>The real question is now whether things are supposed to be this way, or if this is an ideosyncracy of the Microsoft C++ compiler.</p>
</blockquote>
<p>So I suppose you have something like that:</p>
<pre><code>void doSomething()
{
static int value ;
}
</code></pre>
<p>You must realise that the static variable inside the function, simply put, a global variable hidden to all but the function's scope, meaning that only the function it is declared inside can reach it.</p>
<p>Inlining the function won't change anything:</p>
<pre><code>inline void doSomething()
{
static int value ;
}
</code></pre>
<p>There will be only one hidden global variable. the fact the compiler will try to inline the code won't change the fact there is only one global hidden variable.</p>
<p>Now, if your function is declared static:</p>
<pre><code>static void doSomething()
{
static int value ;
}
</code></pre>
<p>Then it is "private" for each compilation unit, meaning that every CPP file including the header where the static function is declared will have its own private copy of the function, including its own private copy of global hidden variable, thus as much variables as there are compilation units including the header.</p>
<p>Adding "inline" to a "static" function with a "static" variable inside:</p>
<pre><code>inline static void doSomething()
{
static int value ;
}
</code></pre>
<p>has the same result than not adding this "inline" keyword, as far as the static variable inside is concerned.</p>
<p><b>So the behaviour of VC++ is correct, and you are mistaking the real meaning of "inline" and "static".</b></p>
http://stackoverflow.com/questions/1420685/c-good-habits-re-transitioning-to-c/1423015#14230159Answer by paercebal for C: Good Habits re: Transitioning to C++paercebal2009-09-14T17:58:50Z2009-09-16T18:22:16Z<p>There are already a lot of good answers. Mine will be more "mindset oriented".</p>
<h2>Data vs. Action!</h2>
<ul>
<li>In C, everything is done to think like "Apply this effect to this data".</li>
<li>In C++, this is more like "Data should behave".</li>
</ul>
<p>While the "Data should behave" can be done in C (and it is done!), in C++, everything needed to implement this easily is already accessible : Encapsulation, constructors, overloading overriding, templates, etc..</p>
<p><b>I found this "Data should behave" idea a very good guiding principle when coding in C++.</b></p>
<h2>C++ syntactic sugar is not optional</h2>
<p>You'll find a lot of C++ features that could be done in C, and some people use it as an excuse to not learn them. This mindset is dangerous (this is the part "<i>treat C++ as a new language, and not an extension</i>" seen in some posts).</p>
<p>A side effect of avoiding writing C++ the C++ way is that while a C++ developer is supposed to understand C++ code, he/she is not supposed to understand your little personal framework mimicking C++ sugar with C-only features. In fact, he/she won't be interested by your framework. Truth to be said, he/she will only feel pity/contempt for you because you lost precious time producing that. Ultimately, he/she will hate you if he/she must use your framework instead of the C++ sugar.</p>
<p><b>Guiding principles like "I can do this the C way" will just make you miss the wagon. Better not to start learning C++ at all if you already have this kind of C-centric mode of thinking.</b></p>
<p>Your language of choice is never the best. YOU are supposed to become the best. If you write C++ code, then write it the C++ way.</p>
<h2>C-compatible C++ code is a semantic error</h2>
<p>Typedefing your structs to make them compilable by a C compiler is a bad joke. Using pointers instead of references is a slap to your future self. The <code>extern "C"</code> will only make your code weaker, not stronger. And using <code>void *</code> for genericity will only increase the number of fellow C++ coders who will gladly pay to have your head removed in a spectacularly painful way.</p>
<p><b>Don't ever bother to write C-compatible code unless you really really <i>really</i> have to.</b></p>
<p>You'll just weight yourself down with a time-consuming coding style for a feature you'll never use.</p>
<h2>The compiler is a powerful friend/enemy</h2>
<p>Working low level has strange effects on some developers. They believe a lot on their control of the compiled code. Delegating this control to higher-level constructs is difficult for them.</p>
<p>A good example of that is ditching the constructor/destructor pattern because "<i>sometimes, constructors takes too much time... Better to do it my way...</i>".</p>
<p>The C++ compiler is quite able to optimize apparently unoptimized code. In fact, the code produced by the compiler can be quite different from the one you believe you produced.</p>
<p>Don't try to be better/smarter than the compiler is because:</p>
<ol>
<li>You probably already lost the fight, as even old compilers will usually produce better code than you can dream to do today</li>
<li>Even if you did win the fight today, it will automatically turn into a defeat tomorrow, as compilers will become better and better in the future, so your "optimized code" of today will become the program bottleneck and refactoring subject of the next years (not mentioning shameful memories for you).</li>
</ol>
<p>So, trust your compiler.</p>
<p><b>Don't micromanage the production of your code. Do your own work, and let the compiler do its own.</b></p>
<p>Note that this point should not be used to justify production of slow/inefficient code. If premature optimization is the root of all evil, you must still use your knowledge of the language and the compiler to produce good and efficient code (see the next point).</p>
<h2>Know the advantages/drowbacks/costs of each C++ construct</h2>
<p>For example, the fact virtual methods adds one indirection to the function call means for some people that performance will decrease dramatically. Truth is, performance problems are often elsewhere.</p>
<p>Ignorance is no excuse.</p>
<p>Know the code produced for each C++ construct (i.e. inlining, references, constructor, destructor, exception, function overload, function override, template, virtual function, etc.). Know what will be optimized away, and what won't.</p>
<p><b>This way, not only you won't pay for what you don't need (this is a guiding principle of C++), but you will also profit from what costs you zero but brings you a lot.</b></p>
<h2>Be humble</h2>
<p>There are people doing research in C++ that were better at C++ the day of their birth than most of us will ever be. Even if we ignore <a href="http://en.wikipedia.org/wiki/Bjarne_Stroustrup" rel="nofollow">Stroustrup</a>, names like <a href="http://en.wikipedia.org/wiki/Scott_Meyers" rel="nofollow">Meyers</a>, <a href="http://en.wikipedia.org/wiki/David_Abrahams_(computer_programmer)" rel="nofollow">Abrahams</a>, <a href="http://en.wikipedia.org/wiki/Andrei_Alexandrescu" rel="nofollow">Alexandrescu</a>, <a href="http://en.wikipedia.org/wiki/Herb_Sutter" rel="nofollow">Sutter</a>, etc. regularly crop up alongside new ideas. Despite (or as a consequence of) its alien outlook, STL is revolutionary library. And a library like <a href="http://www.boost.org" rel="nofollow">Boost</a>, despite its "small size" when compared to some complete frameworks (like Java or .NET APIs), is a massive repository of excellent code offered to you to study.</p>
<p>Just because you find some new feature "strange" or "alien", don't underestimate it. Trying to understand it will PERHAPS bring you another tool at your disposal, and will ALWAYS increase your mastery of the language, and will ALWAYS make your brain work, which is a good thing in the dev business.</p>
<p><b>Most people I know who failed their "conversion to C++" just assumed this or this feature was useless because they did not bother to understand it.</b></p>
<h2><a href="http://en.wikipedia.org/wiki/Resource_Acquisition_Is_Initialization" rel="nofollow">RAII</a> !!!!</h2>
<p>If you don't know what it is, learn it.</p>
<p>Without RAII, your C++ code is just bugged code that avoided compilation error.</p>
<p><b>RAII is the single most important notion of C++.</b></p>
<p>Everything else is related.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243214#24321440Answer by paercebal for Most crucial elements in a light-weight C++ coding standardpaercebal2008-10-28T13:09:16Z2009-08-29T21:00:26Z<h2>Use C++ casts instead of C casts</h2>
<p>use:</p>
<ul>
<li><code>static_cast</code></li>
<li><code>const_cast</code></li>
<li><code>reinterpret_cast</code></li>
<li><code>dynamic_cast</code></li>
</ul>
<p>but never C-style casts.</p>
<p><strong>How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.</strong></p>
<p>Each cast has limited powers. E.g., if you want to remove a const (for whatever reason), <code>const_cast</code> won't change the type at the same time (which could be a bug difficult to find).</p>
<p>Also, this enables a reviewer to search for them and then, the coder to justify them if needed.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243356#2433561Answer by paercebal for Most crucial elements in a light-weight C++ coding standardpaercebal2008-10-28T13:41:07Z2009-08-29T20:56:53Z<h2>Limit the types you use</h2>
<p>If you need to use an integer type, choose one and keep it. This will avoid the problems associated with mixing of short, int, long, etc.. types.</p>
<pre><code>// BAD
int i ;
long j ;
short k ;
// GOOD (if you choose the "int" as integer)
int i ;
int j ;
int k ;
</code></pre>
<p>The same goes for real types: Choose one (e.g. double), and do not use another.</p>
<p>Etc.</p>
<p>Note: There is still the issue of signed/unsigned, which can't always be avoided, and the fact STL use its own integer types (i.e. std::vector::size_type), but all the remaining code should not mixing.</p>
<p>Note 2: You could use typedef to "choose" your prefered type for signed integer and real numbers. This would enable a low-cost change if needed.</p>
<p><strong>How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.?</strong></p>
<p>Some bugs are created by comparing unsigned type to signed types, mysterious loss of precision, or integer under/overflow.</p>
<p>Compilers usually send warnings at compile time, but then, the usually answer is to "cast" the warning away, which can help hide the error.</p>
<h3>Edit</h3>
<p>plinth made an useful comment I'll copy paste here:</p>
<blockquote>
<p>Having written a lot of code that has to interact with things at the hardware level, I can't say much for this guideline. For this level of work, I prefer the integral types to be abstracted to names that include the precision (ie, int16, uint16, int32, uint32, etc.) – plinth Aug 18 at 20:50</p>
</blockquote>
<p>plinth is right, of course. Sometimes you have to deal with int16, uint8 and other "precisely defined" types.</p>
<p>This does not invalidate the post above, only complete it.</p>
<p>The source of the bug is mixing different types (converting unsigned char into int, for example), thus, this kind of mixing must be avoided. The following rules thus apply:</p>
<ul>
<li>Choose one generic integral type (e.g. int), and stick to it when dealing with generic integers (the same can be said about reals)</li>
<li>If (and only if) you need exact types (like uint8 or int16), use them</li>
<li>Never mix different types.</li>
<li>If you <strong>really</strong> must mix different types, then be very very cautious.</li>
</ul>
<p>Below is an example of code that would break:</p>
<pre><code>void * doAllocate(uint32 i)
{
// try to allocate an array of "i" integers and returns it
}
void doSomething()
{
uint32 i0 = 225 ;
int8 i1 = 225 ; // Oops...
doAllocate(i0) ; // This will try to allocate 255 integers
doAllocate(i1) ; // This will TRY TO allocate 4294967265
// integers, NOT 225
}
</code></pre>
http://stackoverflow.com/questions/96196/when-are-c-macros-beneficial/96419#964191Answer by paercebal for When are C++ macros beneficial?paercebal2008-09-18T20:13:37Z2009-08-18T20:14:03Z<p>Let's say we'll ignore obvious things like header guards.</p>
<p>Sometimes, you want to generate code that needs to be copy/pasted by the precompiler:</p>
<pre><code>#define RAISE_ERROR_STL(p_strMessage) \
do \
{ \
try \
{ \
std::tstringstream strBuffer ; \
strBuffer << p_strMessage ; \
strMessage = strBuffer.str() ; \
raiseSomeAlert(__FILE__, __FUNCSIG__, __LINE__, strBuffer.str().c_str()) \
} \
catch(...){} \
{ \
} \
} \
while(false)
</code></pre>
<p>which enables you to code this:</p>
<pre><code>RAISE_ERROR_STL("Hello... The following values " << i << " and " << j << " are wrong") ;
</code></pre>
<p>And can generate messages like:</p>
<pre><code>Error Raised:
====================================
File : MyFile.cpp, line 225
Function : MyFunction(int, double)
Message : "Hello... The following values 23 and 12 are wrong"
</code></pre>
<p>Note that mixing templates with macros can lead to even better results (i.e. automatically generating the values side-by-side with their variable names)</p>
<p>Other times, you need the __FILE__ and/or the __LINE__ of some code, to generate debug info, for example. The following is a classic for Visual C++:</p>
<pre><code>#define WRNG_PRIVATE_STR2(z) #z
#define WRNG_PRIVATE_STR1(x) WRNG_PRIVATE_STR2(x)
#define WRNG __FILE__ "("WRNG_PRIVATE_STR1(__LINE__)") : ------------ : "
</code></pre>
<p>As with the following code:</p>
<pre><code>#pragma message(WRNG "Hello World")
</code></pre>
<p>it generates messages like:</p>
<pre><code>C:\my_project\my_cpp_file.cpp (225) : ------------ Hello World
</code></pre>
<p>Other times, you need to generate code using the # and ## concatenation operators, like generating getters and setters for a property (this is for quite a limited cases, through).</p>
<p>Other times, you will generate code than won't compile if used through a function, like:</p>
<pre><code>#define MY_TRY try{
#define MY_CATCH } catch(...) {
#define MY_END_TRY }
</code></pre>
<p>Which can be used as</p>
<pre><code>MY_TRY
doSomethingDangerous() ;
MY_CATCH
tryToRecoverEvenWithoutMeaningfullInfo() ;
damnThoseMacros() ;
MY_END_TRY
</code></pre>
<p>(still, I only saw this kind of code rightly used <strong>once</strong>)</p>
<p>Last, but not least, the famous <a href="http://www.boost.org/doc/libs/1%5F35%5F0/doc/html/foreach.html" rel="nofollow"><code>boost::foreach</code></a> !!!</p>
<pre><code>#include <string>
#include <iostream>
#include <boost/foreach.hpp>
int main()
{
std::string hello( "Hello, world!" );
BOOST_FOREACH( char ch, hello )
{
std::cout << ch;
}
return 0;
}
</code></pre>
<p>(Note: code copy/pasted from the boost homepage)</p>
<p>Which is (IMHO) way better than <code>std::for_each</code>.</p>
<p>So, macros are always useful because they are outside the normal compiler rules. But I find that most the time I see one, they are effectively remains of C code never translated into proper C++.</p>
http://stackoverflow.com/questions/588700/programmer-productivity-with-stl-vs-custom-utility-classes/1281655#12816550Answer by paercebal for Programmer productivity with STL vs. custom utility classespaercebal2009-08-15T11:04:55Z2009-08-15T11:04:55Z<p>The reasons I see are:</p>
<h2>Quality of the code</h2>
<p>The writers of the STL (either its interface, or the implementation for your compilers) are without doubts magnitudes better than the best developer in your company.</p>
<p>Their job is to make a usable STL, which means that every function/method/object is heavily tested anyway.</p>
<h2>Maintainability of the code</h2>
<p>With the turnover, some code can become slowly and stealthily unmaintained. Which means that if there is a bug in this code, or if its performance or interface are found lacking (see the "Quality" above), then you'll find no one to expertly improve it.</p>
<p>The code change will have a non-zero probability of a code regression elsewhere, and if your in-house library is not unit-tested, that this regression will go undetected for quite some time.</p>
<p>And I'm not even mentioning the "I WON'T ever touch that slimy code" syndrome when someone trying to correct the code just finds he doesn't understand why it was done this way (because of macros, strange pre-conditions, etc..</p>
<h2>Conclusion</h2>
<p>Combine the two, and you'll find that for generic code (i.e. arrays, strings, etc.), you'll go better by slowly migrating from in-house libraries to STL library, writting "converter functions" when needed.</p>
<p>I think this kind of migration is part of the maintenance of your code, and that you should slowly (i.e. with new code, or when refactoring), whenever possible, use STL instead of in-house generic libraries.</p>
http://stackoverflow.com/questions/1208028/significance-of-a-inl-file-in-c/1281523#12815231Answer by paercebal for Significance of a .inl file in C++paercebal2009-08-15T09:29:01Z2009-08-15T10:51:58Z<p>INL files are necessary when you have a dependency cycle between <b>header</b> code.</p>
<p>For example:</p>
<pre><code>// A.HPP
struct A
{
void doSomethingElse()
{
// Etc.
}
void doSomething(B & b)
{
b.doSomethingElse() ;
}
} ;
</code></pre>
<p>And:</p>
<pre><code>// B.HPP
struct B
{
void doSomethingElse()
{
// Etc.
}
void doSomething(A & a)
{
a.doSomethingElse() ;
}
} ;
</code></pre>
<p>There's no way you'll have it compile, including using forward declaration.</p>
<p>The solution is then to break down definition and implementation into two kind of header files:</p>
<ul>
<li>HPP for header declaration/definition</li>
<li>INL for header implementation</li>
</ul>
<p>Which breaks down into the following example:</p>
<pre><code>// A.HPP
struct B ;
struct A
{
void doSomethingElse() ;
void doSomething(B & b) ;
} ;
</code></pre>
<p>And:</p>
<pre><code>// A.INL
#include <A.HPP>
#include <B.HPP>
inline void A::doSomethingElse()
{
// Etc.
}
inline void A::doSomething(B & b)
{
b.doSomethingElse() ;
}
</code></pre>
<p>And:</p>
<pre><code>// B.HPP
struct A ;
struct B
{
void doSomethingElse() ;
void doSomething(A & a) ;
} ;
</code></pre>
<p>And:</p>
<pre><code>// B.INL
#include <B.HPP>
#include <A.HPP>
inline void B::doSomethingElse()
{
// Etc.
}
inline void B::doSomething(A & a)
{
a.doSomethingElse() ;
}
</code></pre>
<p>This way, you can include whatever .INL file you need in your own source, and it will work.
Now, the suffix names are not really important, only their uses.</p>
http://stackoverflow.com/questions/164356/can-i-use-the-stl-if-i-cannot-afford-the-slow-performance-when-exceptions-are-thr/1281627#12816272Answer by paercebal for Can I use the STL if I cannot afford the slow performance when exceptions are thrown?paercebal2009-08-15T10:45:24Z2009-08-15T10:45:24Z<p>It's not clearly written in the previous answers, so:</p>
<h2>Exceptions happen in C++</h2>
<p>Using the STL or not won't remove the RAII code that will free the objects's resources you allocated.</p>
<p>For example:</p>
<pre><code>void doSomething()
{
MyString str ;
doSomethingElse() ;
}
</code></pre>
<p>In the code above, the compiler will generate the code to free the MyString resources (i.e. will call the MyString destructor), no matter what happens in the meantime including if if an exception is thrown by doSomethingElse or if you do a "return" before the end of the function scope.</p>
<p>If you have a problem with that, then either you should revise your mindset, or try C.</p>
<h2>Exceptions are supposed to be exceptional</h2>
<p>Usually, when an exception occurs (and only when), you'll have a performance hit.</p>
<p>But then, the exception should only sent when:</p>
<ul>
<li>You have an exceptional event to handle (i.e. some kind of error)</li>
<li>In very exceptional cases (i.e. a "massive return" from multiple function call in the stack, like when doing a complicated search, or unwinding the stack prior a thread graceful interruption)</li>
</ul>
<p>The keyword here is "exceptional", which is good because we are discussing "exception" (see the pattern?).</p>
<p>In your case, if you have an exception thrown, chances are good something so bad happened your program would have crashed anyway without exception.</p>
<p>In this case, your problem is not dealing with the performance hit. It is to deal with a graceful handling of the error, or, at worse, graceful termination of your program (including a "Sorry" messagebox, saving unsaved data into a temporary file for later recovery, etc.).</p>
<p>This means (unless in very exceptional cases), don't use exceptions as "return data". Throw exceptions when something very bad happens. Catch an exception only if you know what to do with that. Avoid try/catching (unless you know how to handle the exception).</p>
<h2>What about the STL ?</h2>
<p>Now that we know that:</p>
<ul>
<li>You still want to use C++</li>
<li>Your aim is not to throw thousand exceptions each and every seconds just for the fun of it</li>
</ul>
<p>We should discuss STL:</p>
<p>STL will (if possible) usually verify if you're doing something wrong with it. And if you do, it will throw an exception. Still, in C++, you usually won't pay for something you won't use.</p>
<p>An example of that is the access to a vector data.</p>
<p>If you <b>know</b> you won't go out of bounds, then you should use the operator [].</p>
<p>If you <b>know</b> you won't verify the bounds, then you should use the method at().</p>
<p>Example A:</p>
<pre><code>typedef std::vector<std::string> Vector ;
void outputAllData(const Vector & aString)
{
for(Vector::size_type i = 0, iMax = aString.size() ; i != iMax ; ++i)
{
std::cout << i << " : " << aString[i] << std::endl ;
}
}
</code></pre>
<p>Example B:</p>
<pre><code>typedef std::vector<std::string> Vector ;
void outputSomeData(const Vector & aString, Vector::size_type iIndex)
{
std::cout << iIndex << " : " << aString.at(iIndex) << std::endl ;
}
</code></pre>
<p>The example A "trust" the programmer, and no time will be lost in verification (and thus, less chance of an exception thrown <i>at that time</i> if there is an error anyway... Which usually means the error/exception/crash will usually happen after, which won't help debugging and will let more data be corrupted).</p>
<p>The example B asks the vector to verify the index is correct, and throw an exception if not.</p>
<p>The choice is yours.</p>
http://stackoverflow.com/questions/1275852/why-does-boostforeach-not-work-sometimes-with-c-strings/1281499#12814991Answer by paercebal for Why does BOOST_FOREACH not work sometimes with C++ strings?paercebal2009-08-15T09:09:47Z2009-08-15T09:09:47Z<p>You should give us more information about your code, because:</p>
<ul>
<li>Your problem is tied with the VC++ runtime used</li>
<li>As plainly answered by Dmitriy, your problem is most probably caused by the body of the loop</li>
</ul>
<p>Anyway, with the little info you gave us, I could speculate the following:</p>
<ul>
<li>The fact the problem happens on debug and not on release is perhaps because a debug check discovered an error, memory corruption, whatever.</li>
<li>The fact it happens only when you switch runtime, with STL code is perhaps you are mixing code from different modules, each one compiled with a different runtime</li>
</ul>
<p>Of course, the fact your iterating over a const string means nothing should get modified, but as I was unable to reproduce your bug (pun intended), it is difficult to offer a definitive answer.</p>
<p>If you want more info, you need to provide us with the following info:</p>
<ul>
<li>Is the string object coming from another module (another DLL, another LIB, another EXE), possibly compiled with another runtime ?</li>
<li>If you write the code by hand (using a plain old "for"), does it work ?</li>
<li>What is the exact error message ?</li>
</ul>
http://stackoverflow.com/questions/1275864/is-there-any-cool-project-written-in-stl/1281483#12814832Answer by paercebal for Is there any cool project written in STL?paercebal2009-08-15T08:48:54Z2009-08-15T08:48:54Z<p>Not exactly an answer to your question, but if you have no knowledge of STL/templates, you'll find STL-based code to be sometimes, er..., raw.</p>
<p>For example, if the following code...</p>
<pre><code>std::for_each( s.begin(), s.end(),
std::bind1st( std::mem_fun( &MyClass::MyMethod ), this ) );
</code></pre>
<p>... gives you the creeps (it did, for me), then you're for a bad surprise if browsing some STL intensive code.</p>
<p>If you want to learn STL, trying each and every class/function of STL, separatly, would be a good idea, too. For example, take <a href="http://www.cplusplus.com/reference/stl/" rel="nofollow">http://www.cplusplus.com/reference/stl/</a> and play with both the containers, and the helper functions <i>separately</i>.</p>
<p>The harder one will be in header <algorithm> and <functional>, but this is my personal viewpoint....</p>
http://stackoverflow.com/questions/1262459/coding-standards-for-pure-c-not-c/1262958#12629584Answer by paercebal for Coding Standards for pure C (not C++)paercebal2009-08-11T21:13:40Z2009-08-11T21:20:53Z<p>I have no professionnal experience on C (only on C++), so don't take my advices, tricks and tips too seriously, as they are "object-like-oriented".</p>
<h2>Almost Object C?</h2>
<p>Simulating basic object-like features can be done easily:</p>
<p>In the header, forward declare your type, typedef it, and declare the "methods". For example:</p>
<pre><code>/* MyString.h */
#include <string.h>
/* Forward declaration */
struct StructMyString ;
/* Typedef of forward-declaration (note: Not possible in C++) */
typedef struct StructMyString MyString ;
MyString * MyString_new() ;
MyString * MyString_create(const char * p_pString) ;
void MyString_delete(MyString * p_pThis) ;
size_t MyString_length(const MyString * p_pThis) ;
MyString * MyString_copy(MyString * p_pThis, const MyString * p_pSource) ;
MyString * MyString_concat(MyString * p_pThis, const MyString * p_pSource) ;
const char * MyString_get_c_string(const MyString * p_pThis) ;
MyString * MyString_copy_c_string(MyString * p_pThis, const char * p_pSource) ;
MyString * MyString_concat_c_string(MyString * p_pThis, const char * p_pSource) ;
</code></pre>
<p>You'll see each functions is prefixed. I choose the name of the "struct" to make sure there won't be collision with another code.</p>
<p>You'll see, too, that I used "p_pThis" to keep with the OO-like idea.</p>
<p>In the source file, define your type, and define the functions:</p>
<pre><code>/* MyString.c */
#include "MyString.h"
#include <string.h>
#include <stdlib.h>
struct StructMyString
{
char * m_pString ;
size_t m_iSize ;
} ;
MyString * MyString_new()
{
MyString * pMyString = malloc(sizeof(MyString)) ;
pMyString->m_iSize = 0 ;
pMyString->m_pString = malloc((pMyString->m_iSize + 1) * sizeof(char)) ;
pMyString->m_pString[0] = 0 ;
return pMyString ;
}
/* etc. */
</code></pre>
<p>If you want "private" functions (or private global variables), declare them static in the C source. This way, they won't be visible outside:</p>
<pre><code>static void doSomethingPrivate()
{
/* etc. */
}
static int g_iMyPrivateCounter = 0 ;
</code></pre>
<p>If you want inheritance, then you're almost screwed. If you believed everything in C was global, including variable, then you should get more experience in C before even trying to think how inheritance could be simulated.</p>
<h2>Misc. Tips</h2>
<h3>Avoid multiple code-paths.</h3>
<p>For example, multiple returns is risky. For example:</p>
<pre><code>void doSomething(int i)
{
void * p = malloc(25) ;
if(i > 0)
{
/* this will leak memory ! */
return ;
}
free(p) ;
}
</code></pre>
<h3>Avoid non-const globals</h3>
<p>This include "static" variables (which are not static functions).</p>
<p>Global non-const variables are almost always a bad idea (i.e. see C API strtok for an example of crappy function), and if producing multithread safe code, they are a pain to handle.</p>
<h3>Avoid name collision</h3>
<p>Choose a "namespace" for your functions, and for your defines. This could be:</p>
<pre><code>#define GROOVY_LIB_x_MY_CONST_INT 42
void GoovyLib_dosomething() ;
</code></pre>
<h3>Beware defines</h3>
<p>Defines can't be avoided in C, but they can have side effects!</p>
<pre><code>#define MAX(a, b) (a > b) ? (a) : (b)
void doSomething()
{
int i = 0, j = 1, k ;
k = MAX(i, j) ; /* now, k == 1, i == 0 and j == 1 */
k = MAX(i, j++) ; /* now, k == 2, i == 0 and j == 3, NOT 2, and NOT 1 !!! */
}
</code></pre>
<h3>Initialize your variables</h3>
<p>Avoid declaring variables without initializing them:</p>
<pre><code>int i = 42 ; /* now i = 42 */
int j ; /* now j can have any value */
double k ; /* now f can have any value, including invalid ones ! */
</code></pre>
<p>Uninitialized variables are causes of painful bugs.</p>
<h3>Know all the C API</h3>
<p>The C API function list as described in the K&R is quite small. You'll read the whole list in 20 minutes. You must know those functions.</p>
<h3>Wanna some experience?</h3>
<p>Rewrite the C API. For example, try to write your own version of the string.h functions, to see how it is done.</p>
http://stackoverflow.com/questions/479668/include-indirection-on-visual-c1Include indirection on Visual C++paercebal2009-01-26T12:43:28Z2009-08-09T19:30:35Z
<p>Let's say we have an application that will need Boost to compile. Boost being an external library, updated regularly, and our application having multiple binaries and multiple versions (<i>"multiple" as in "Let them grow and multiply"... don't ask...</i>), we need an easy to update/maintain indirection to have for each app's version link with the right Boost version.</p>
<p>For example:</p>
<ul>
<li>MyApp 8.0 => Boost 1.34</li>
<li>MyApp 8.1 => Boost 1.35</li>
<li>MyApp 9.0 => Boost 1.35</li>
<li>MyApp 10.0 => Boost 1.37</li>
</ul>
<p>On a Linux filesystem, we would create a symbolic link redirecting to the right boost directory:</p>
<ul>
<li>MyApp 8.0 => MyAppBoostLink_8.0 => Boost 1.34</li>
<li>MyApp 8.1 => MyAppBoostLink_8.1 => Boost 1.35</li>
<li>MyApp 9.0 => MyAppBoostLink_9.0 => Boost 1.35</li>
<li>MyApp 10.0 => MyAppBoostLink_10.0 => Boost 1.37</li>
</ul>
<p>This would enable us to easily update MyApp 10.0 to link with Boost 1.38 when it will be available, just by replacing the symbolic link.</p>
<p>But on Windows, this does not work (or I missed something).</p>
<p>Boost itself seems to give up on the idea: With BJam, I recall seeing warnings saying BJam was copying the lib files because symbolic links did not work on WinNT. I tried an alternative, as we use Visual C++, but no pragma resolves this problem (I searched for a pragma adding default search directories for header includes and library links, but found none).</p>
<p>I can't believe I'll need to launch a script to check-out the VCPROJs files (Visual C++ XML makefiles), to update the Boost includes, and then check-in the modifications, but I see no other solution until Windows have working symbolic links (or either I discover how to create them).</p>
<p>Is there a better idea?</p>
<h2>Edit</h2>
<p>The problem disappeared when we updated our compiler, from Visual C++ 2003 to Visual C++ 2008. Apparently, Visual C++ 2008 sees symbolic links across networks.</p>
http://stackoverflow.com/questions/179213/c-include-semantics7C++ #include semanticspaercebal2008-10-07T16:07:32Z2009-08-09T12:37:50Z
<p>This is a multiple question for the same pre-processing instruction.</p>
<h2>1 - <> or "" ?</h2>
<p>Appart from the info found in the MSDN:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/36k2cdd4(VS.80).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/36k2cdd4(VS.80).aspx</a></p>
<p>1.a: What are the differences between the two notations?<br>
1.b: Do all compilers implement them the same way?<br>
1.c: When would you use the <>, and when would you use the "" (i.e. what are the criteria you would use to use one or the other for a header include)?<br></p>
<h2>2 - #include {TheProject/TheHeader.hpp} or {TheHeader.hpp} ?</h2>
<p>I've seen at least two ways of writing includes of one's project headers.
Considering that you have at least 4 types of headers, that is:</p>
<ul>
<li>private headers of your project?</li>
<li>headers of your project, but which are exporting symbols (and thus, "public")</li>
<li>headers of another project your module links with</li>
<li>headers of a compiler or standard library</li>
</ul>
<p>For each kind of headers:</p>
<p>2.a: Would you use <> or "" ?<br>
2.b: Would you include with {TheProject/TheHeader.hpp}, or with {TheHeader.hpp} only?<br></p>
<h2>3 - Bonus</h2>
<p>3.a: Do you work on project with sources and/or headers within a tree-like organisation (i.e., directories inside directories, as opposed to "every file in one directory") and what are the pros/cons?</p>
http://stackoverflow.com/questions/179213/c-include-semantics/1251308#12513082Answer by paercebal for C++ #include semanticspaercebal2009-08-09T12:37:50Z2009-08-09T12:37:50Z<p>After reading all answers, as well as compiler documentation, I decided I would follow the following standard.</p>
<p>For all files, be them project headers or external headers, always use the pattern:</p>
<pre><code>#include <namespace/header.hpp>
</code></pre>
<p>The namespace being at least one directory deep, to avoid collision.</p>
<p>Of course, this means that the project directory where the project headers are should be added as "default include header" to the makefile, too.</p>
<p>The reason for this choice is that I found the following information:</p>
<h1>1. The include "" pattern is compiler-dependent</h1>
<p>I'll give the answers below</p>
<h2>1.a Visual C++:</h2>
<p>Source:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/36k2cdd4.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/36k2cdd4.aspx</a></li>
</ul>
<h3>#include "MyFile.hpp"</h3>
<p>The preprocessor searches for include files in the following order:</p>
<ol>
<li>In the same directory as the file that contains the #include statement.</li>
<li>In the directories of any previously opened include files in the reverse order in which they were opened. The search starts from the directory of the include file that was opened last and continues through the directory of the include file that was opened first.</li>
<li>Along the path specified by each /I compiler option.</li>
<li>Along the paths specified by the INCLUDE environment variable.</li>
</ol>
<h3>#include <MyFile.hpp></h3>
<p>The preprocessor searches for include files in the following order:</p>
<ol>
<li>Along the path specified by each /I compiler option.</li>
<li>When compiling from the command line, along the paths that are specified by the INCLUDE environment variable.</li>
</ol>
<h2>1.b g++</h2>
<p>Source:</p>
<ul>
<li><a href="http://gcc.gnu.org/onlinedocs/cpp/Header-Files.html" rel="nofollow">http://gcc.gnu.org/onlinedocs/cpp/Header-Files.html</a></li>
<li><a href="http://gcc.gnu.org/onlinedocs/cpp/Include-Syntax.html" rel="nofollow">http://gcc.gnu.org/onlinedocs/cpp/Include-Syntax.html</a></li>
<li><a href="http://gcc.gnu.org/onlinedocs/cpp/Include-Operation.html" rel="nofollow">http://gcc.gnu.org/onlinedocs/cpp/Include-Operation.html</a></li>
<li><a href="http://gcc.gnu.org/onlinedocs/cpp/Invocation.html" rel="nofollow">http://gcc.gnu.org/onlinedocs/cpp/Invocation.html</a></li>
<li><a href="http://gcc.gnu.org/onlinedocs/cpp/Search-Path.html" rel="nofollow">http://gcc.gnu.org/onlinedocs/cpp/Search-Path.html</a></li>
<li><a href="http://gcc.gnu.org/onlinedocs/cpp/Once_002dOnly-Headers.html" rel="nofollow">http://gcc.gnu.org/onlinedocs/cpp/Once_002dOnly-Headers.html</a></li>
<li><a href="http://gcc.gnu.org/onlinedocs/cpp/Wrapper-Headers.html" rel="nofollow">http://gcc.gnu.org/onlinedocs/cpp/Wrapper-Headers.html</a></li>
<li><a href="http://gcc.gnu.org/onlinedocs/cpp/System-Headers.html" rel="nofollow">http://gcc.gnu.org/onlinedocs/cpp/System-Headers.html</a></li>
</ul>
<h3>#include "MyFile.hpp"</h3>
<p>This variant is used for header files of your own program. The preprocessor searches for include files in the following order:</p>
<ol>
<li>In the same directory as the file that contains the #include statement.</li>
<li>Along the path specified by each -iquote compiler option.</li>
<li>in the quote directories</li>
<li>As for the #include </li>
</ol>
<h3>#include </h3>
<p>This variant is used for system header files. The preprocessor searches for include files in the following order:</p>
<ol>
<li>Along the path specified by each -I compiler option.</li>
<li>Inside the system directories.</li>
</ol>
<h2>1.c Conclusion</h2>
<p>The pattern "" could lead to subtle compilation error across compilers, and as I currently work both on Windows Visual C++, Linux g++, and Solaris CC, this is not acceptable.</p>
<p>Anyway, the advantage of "" described features are far from interesting anyway, so...</p>
<h1>2. Use the {namespace}/header.hpp pattern</h1>
<p>I saw at work (<i>i.e. this is not theory, this is real-life, painful professional experience</i>) two headers with the same name, one in the local project directory, and the other in the global include.</p>
<p>As we were using the "" pattern, and that file was included both in local headers and global headers, there was no way to understand what was really going on, when strange errors appeared.</p>
<p>Using the directory in the include would have saved us time because the user would have had to either write:</p>
<pre><code>#include <MyLocalProject/Header.hpp>
</code></pre>
<p>or</p>
<pre><code>#include <GlobalInclude/Header.hpp>
</code></pre>
<p>You'll note that while</p>
<pre><code>#include "Header.hpp"
</code></pre>
<p>would have compiled successfully, thus, still hiding the problem, whereas</p>
<pre><code>#include <Header.hpp>
</code></pre>
<p>would not have compiled in normal circonstances.</p>
<p>Thus, sticking to the <> notation would have made mandatory for the developer the prefixing of the include with the right directory, another reason to prefer <> to "".</p>
<h1>3. Conclusion</h1>
<p>Using both the <> notation and namespaced notation together removes from the pre-compiler the possibility to guess for files, instead searching only the default include directories.</p>
<p>Of course, the standard libraries are still included as usual, that is:</p>
<pre><code>#include <cstdlib>
#include <vector>
</code></pre>
http://stackoverflow.com/questions/1250795/very-poor-boostlexicalcast-performance/1251051#125105115Answer by paercebal for Very poor boost::lexical_cast performancepaercebal2009-08-09T09:50:55Z2009-08-09T10:56:51Z<p>Just to add info on Barry's and Motti's excellent answers:</p>
<h2>Some background</h2>
<p>Please remember Boost is written by the best C++ developers on this planet, and reviewed by the same best developers. If lexical_cast was so wrong, someone would have hacked the library either with criticism or with code.</p>
<p>The fact you missed the point of lexical_cast's real value and the library's background tells me that perhaps you're not so good at C++ as you would believe: Perhaps you should have then refrained from using the word "pathetic"...</p>
<p>Anyway...</p>
<h2>Comparing apples and oranges.</h2>
<p>In Java, you are casting an integer into a Java String. You'll note I'm not talking about an array of characters, or a user defined string. You'll note, too, I'm not talking about your user-defined integer. I'm talking about strict Java Integer and strict Java String.</p>
<p>In Python, you are more or less doing the same.</p>
<p>As said by other posts, you are, in essence, using the Java and Python equivalents of sprintf (or the less standard itoa).</p>
<p>In C++, you are using a very powerful cast. Not powerful in the sense of raw speed performance (if you want speed, perhaps sprintf would be better suited), but powerful in the sense of extensibility.</p>
<h3>Comparing apples.</h3>
<p>If you want to compare a Java Integer.toString method, then you should compare it with either C sprintf or C++ ostream facilities.</p>
<p>The C++ stream solution would be 6 times faster (on my g++) than lexical_boost, and quite less extensible:</p>
<pre><code>inline void toString(const int value, std::string & output)
{
// The largest 32-bit integer is 4294967295, that is 10 chars
// On the safe side, add 1 for sign, and 1 for trailing zero
char buffer[12] ;
sprintf(buffer, "%i", value) ;
output = buffer ;
}
</code></pre>
<p>The C sprintf solution would be 8 times faster (on my g++) than lexical_boost but a lot less safe:</p>
<pre><code>inline void toString(const int value, char * output)
{
sprintf(output, "%i", value) ;
}
</code></pre>
<p>Both solutions are either as fast or faster than your Java solution (according to your data).</p>
<h3>Comparing oranges.</h3>
<p>If you want to compare a C++ lexical_cast, then you should compare it with this Java pseudo code:</p>
<pre><code>Source s ;
Target t = Target.fromString(Source(s).toString()) ;
</code></pre>
<p>Source and Target being of of whatever type you want, including built-in types like boolean or int, which is possible in C++ because we are using templates, here.</p>
<h2>Extensibility? Is that a dirty word?</h2>
<p>No, but it has a well known cost: When written by the same coder, general solutions to specific problems are usually slower than specific solutions written for their specific problems.</p>
<p>In the current case, in a naive viewpoint, lexical_cast will use the stream facilities to convert from a type A into a string stream, and then from this string stream into a type B.</p>
<p>This means that as long as your object can be output into a stream, and input from a stream, you'll be able to use lexical cast on it, without touching any single line of code.</p>
<h2>So, what's the lexical_cast uses?</h2>
<p>The lexical cast's main uses are:</p>
<ol>
<li>Ease of use (hey, a C++ cast that works for everything being a value!)</li>
<li>Combining it with template heavy code, where your types are parametrized, and as such you don't want to deal with specifics, and you don't want to know the types.</li>
<li>Still potentially relatively efficient, if you have basic template knowledge, as I will demonstrate below</li>
</ol>
<p>The point 2 is very very important here, because it means we have one and only one interface/function to cast a value of a type into an equal or similar value of another type.</p>
<p>This is the real point you missed, and this is the point that costs in performance terms.</p>
<h2>But it's so slooooooowwww!</h2>
<p>If you want raw speed performance, remember you're dealing with C++, and that you have a lot of facilities to handle conversion efficiently, and still, keep the lexical_cast ease of use feature.</p>
<p>It took me some minutes to look at the lexical_cast source, and come with a viable solution. Add to your C++ code the following code:</p>
<pre><code>#ifdef SPECIALIZE_BOOST_LEXICAL_CAST_FOR_STRING_AND_INT
namespace boost
{
template<>
std::string lexical_cast<std::string, int>(const int &arg)
{
// The largest 32-bit integer is 4294967295, that is 10 chars
// On the safe side, add 1 for sign, and 1 for trailing zero
char buffer[12] ;
sprintf(buffer, "%i", arg) ;
return buffer ;
}
}
#endif
</code></pre>
<p>By enabling this specialization of lexical_cast for strings and ints (by defining the macro SPECIALIZE_BOOST_LEXICAL_CAST_FOR_STRING_AND_INT), my code went 5 time faster on my g++ compiler, which means, according to your data, its performance should be similar to Java's.</p>
<p>And it took me 10 minutes of looking at boost code, and write a remotely efficient and correct 32-bit version. And with some work, it could probably go faster and safer (if we had direct write access to the std::string internal buffer, we could avoid a temporary external buffer, for example).</p>
http://stackoverflow.com/questions/1244043/javascript-getting-a-name-of-an-element-in-associative-array/1244118#12441180Answer by paercebal for JavaScript - Getting a name of an element in associative arraypaercebal2009-08-07T10:52:21Z2009-08-07T14:00:39Z<p>Let's say you have an object oObject. It could be:</p>
<pre><code>var oObject = {} ;
oObject["aaa"] = "AAA" ;
oObject["bbb"] = "BBB" ;
oObject["ccc"] = "CCC" ;
oObject["ddd"] = "DDD" ;
oObject["eee"] = "EEE" ;
</code></pre>
<p>Now, let's say you want to know its properties' names and values, to put into the variable strName and strValue. For that you use the "for(x in o)" construct, as in the following example:</p>
<pre><code>var strName, strValue ;
for(strName in oObject)
{
strValue = oObject[strName] ;
alert("name : " + strName + " : value : " + strValue) ;
}
</code></pre>
<p>The "for(x in o)" construct will iterate over all properties of an object "o", and at each iteration, will put in variable "x" the current property name. All you have to do, then, to have its value, is to write o[x], but you already knew that.</p>
<h2>Additional info</h2>
<p>After some thinking, and after seeing the comment of Hank Gay, I feel additional info could be interesting.</p>
<p>Let's be naive (and forget the "in JavaScript, all objects, including arrays, are associative containers" thing).</p>
<p>You will usually need two kind of containers: Maps and Arrays.</p>
<p>Maps are created as in my example above (using the "o = new Object() ;" or the "o = {} ;" notation, and must be accessed through their properties. Of course, maps being maps, no ordering is guaranteed.</p>
<p>Arrays are created differently, and even if they can be accessed as maps, they should be accessed only through their indices, to be sure order is maintained.</p>
<p>Point is:</p>
<ul>
<li>If you need a map, use a "new Object()" container</li>
<li>If you need an array, une an array, use a "new Array()" container</li>
<li>Don't EVER mix the two, and don't EVER access the map through indices, and for arrays, ALWAYS access its data through its indices, because if you don't follow those principles, you won't get what you want.</li>
</ul>
http://stackoverflow.com/questions/1213403/what-is-malloc-doing-in-this-code/1214705#12147054Answer by paercebal for What is malloc doing in this code?paercebal2009-07-31T20:27:06Z2009-07-31T20:48:16Z<p><i>Preamble: I can't believe it! I was baffled by this kind of expression when I was taught C basics (no pun intended). This is why I go into extreme detail in the "parsing the code" section.</i></p>
<h2>Parsing the Code</h2>
<p>The first problem is parsing the code</p>
<h3>Welcome into the Twilight Zone</h3>
<pre><code>str = (char *) malloc (sizeof(char) * (num+1));
</code></pre>
<p>When working with C/C++, parsing this kind of expression is mandatory, so we will break it down into its components. The first thing we see here is something like:</p>
<pre><code>variable = (expression) function (expression) ;
</code></pre>
<p>The first time I saw it, I was just "Hey, I can't believe there is a programming language where you can call a function by putting its parameters both at the left and the right of the function call !".</p>
<h3>Parsing this line of code?</h3>
<p>In truth, this line should be read like:</p>
<pre><code>variable = function_a (function_b (expression)) ;
</code></pre>
<p>where :</p>
<pre><code>expression is sizeof(char) * (num+1)
function_b is malloc
function_a is a cast operator
</code></pre>
<h3>The C cast operator is somewhat less than natural</h3>
<p>As already explained elsewhere, the C-style cast operator is more like</p>
<pre><code>(function_a) expression
</code></pre>
<p>than the more natural</p>
<pre><code>function_a(expression)
</code></pre>
<p>Which explains the strangeness of the whole line of code.</p>
<h3>Does C++ have something more understandable?</h3>
<p>Note that in C++, you can use both notations, but you should instead use the static_cast, const_cast, reinterpret_cast or dynamic_cast instead of the above notations. Using a C++ cast, the above line of code would be:</p>
<pre><code>str = static_cast<char *> ( malloc (sizeof(char) * (num+1)) ) ;
</code></pre>
<h2>My sizeof is larger than yours</h2>
<p>sizeof is an operator. You can think it like a function working on types.
You pass a type as a parameter, and it will give you its size in bytes.</p>
<p>So, if you write:</p>
<pre><code>size_t i = sizeof(char) ;
size_t j = sizeof(int) ;
</code></pre>
<p>You'll probably have (on a 32-bits Linux) a value of 1 for i, and 4 for j.
Its use in malloc is like saying "I want enough room to put 25 cars of 4 meters long" instead of "I want at least 100 meters".</p>
<h2>There's Something About Malloc</h2>
<p>Malloc's parameter is a size_t, that is, an unsigned integer. You give it the size in bytes, and if successful, it returns you the address of allocated memory large enough for you to use as an array. For example:</p>
<pre><code>int * p = (int *) malloc (25 * sizeof(int)) ;
</code></pre>
<p>Then p points to a memory where you can put 25 integers side by side, as if inside an array whose indices go from zero to the size minux one. For example:</p>
<pre><code>p[0] = 42 ; // Ok, because it's the 1st item of the array
p[24] = 42 ; // Ok, because it's the 25th item of the array
p[25] = 42 ; // CORRUPTION ERROR, because you are trying to
// use the 26th item of a 25 items array !
</code></pre>
<p><i>Note: You have pointer arithmetics, too, but this goes beyond the scope of the question.</i></p>
<h2>num + 1?</h2>
<p>C-style strings are somewhat different from other languages strings.
Each character of a string can be of any value BUT NOT ZERO.
Because zero (also noted \0) marks the end of a c string.</p>
<p>Put it another way: You never know the size of a c-string, but by searching the \0 character, you can know where it ends (which is one reasons of buffer overflows and stack corruption, by the way).</p>
<p>For example, the string "Hello" seems to have 5 characters:</p>
<pre><code>"Hello" seems to be an array containing 'H', 'e', 'l', 'l' and 'o'.
</code></pre>
<p>But in truth, it has 6 characters, the last one being the character ZERO, which is noted using the escape character \0. Thus:</p>
<pre><code>"Hello" is an array containing 'H', 'e', 'l', 'l', 'o' and 0.
</code></pre>
<p>This explains that when you want to allocate enough room for a string of "num" characters, you allocate instead "num + 1" characters.</p>
http://stackoverflow.com/questions/1179669/realloc-function-that-would-work-for-memory-allocated-using-new-instead-of-reallo/1180347#11803471Answer by paercebal for realloc function that would work for memory allocated using new instead of reallocpaercebal2009-07-24T21:51:34Z2009-07-24T21:51:34Z<p>If I understand your problem, you have a class which allocate some variable-length memory. There is two possible cases:</p>
<h3>The memory contains C++ objects</h3>
<p>You have no choice: The memory should be, directly or indirectly allocated with new because you need the constructors called.</p>
<p>If you want to have a realloc-like behaviour, then do not use new[]. Use instead a std::vector, which will handle all the allocation/reallocation/Free and construction/destruction correctly.</p>
<h3>The memory is raw</h3>
<p>You could either use new[] or malloc, because you are allocating PODs (an array of ints, or shorts, dumb structures, etc.).</p>
<p>But again, new[] won't offer you a realloc-like behaviour... But if you start using malloc, then you must do housekeeping, i.e. be sure to call free at the right time, memorize the size of the array somewhere, and perhaps even have a size different from the array capacity (i.e. you allocate more, to avoid doing too much reallocs).</p>
<p>And you know what? std::vector already do all this for you.</p>
<h3>Conclusion</h3>
<p>You are coding in C++, then the solution to your problem (i.e. allocating variable length memory inside a class), as already expressed by previous answers, is <b>use std::vector</b>.</p>
http://stackoverflow.com/questions/250511/does-the-d-programming-language-have-a-future/252265#25226526Answer by paercebal for Does the D programming language have a future?paercebal2008-10-31T00:44:52Z2009-06-16T21:45:10Z<p>I wonder...</p>
<p>I stumbled once or twice on web tutorials for D, and, as a C++ developer, I was not impressed.</p>
<p>Not because D lack qualities.</p>
<p>It's just that, as far as I am concerned, learning a language takes time, and I would rather use this time learning different languages.</p>
<p>For me, D, like Objective-C, are either:</p>
<ol>
<li>too much similar to C++ when compared to other languages like Ruby, Python, Perl, Lisp, or even JavaScript, i.e., unlike those language, I believe D won't change a lot my way of thinking. So there's no way I will invest personal time in it.</li>
<li>being less interesting than Java or C# when I'm just drooling over their <strong>huge</strong> standard libraries, i.e., unlike those languages, I believe D won't add a lot to what C++ is able to do.</li>
<li>I never (i.e. never as in <strong>never</strong>) saw a job offering near my home where D (unlike Objective-C) was mentioned</li>
</ol>
<p>And I did not even mention the fact that C++ is huge as a language, and that I am still learning each day new uses of C++ features.</p>
<p>In the end, I guess C++'s shadow hides somewhat D, and thus limits the growth of D's community, which is perhaps a shame. Or perhaps not. I don't know. Without a strong incentive, I just don't see the point to investigate.</p>
<p>Note this is not saying D is a bad language. Quite the contrary. Just giving a personal opinion of why I won't try D, an opinion that could be shared by other people.</p>
<p>Thus, I guess this can be some valuable additional info to the "Does the D programming language have a future?" discussion.</p>
<h2>Edit</h2>
<p>Note that I stumbled on <a href="http://en.wikipedia.org/wiki/D%5F%28programming%5Flanguage)" rel="nofollow">D's page on Wikipedia</a>, and was positively impressed by its features... But it doesn't change what I said above</p>
<h2>Edit 2</h2>
<p>Whoa... If someone like Andrei Alexandrescu wrote an article on D, then I am probably wrong to ignore it:</p>
<p><a href="http://www.ddj.com/go-parallel/article/showArticle.jhtml?articleID=217801225" rel="nofollow">http://www.ddj.com/go-parallel/article/showArticle.jhtml?articleID=217801225</a></p>
http://stackoverflow.com/questions/180601/using-super-in-c20Using "super" in C++paercebal2008-10-07T21:49:42Z2009-06-10T16:43:46Z
<p>My style of coding includes the following idiom:</p>
<pre><code>class Derived : public Base
{
public :
typedef Base super; // note that it could be hidden in protected/private section, instead
// Etc.
} ;
</code></pre>
<p>This enables me to use "super" as an alias to Base, for example, in constructors:</p>
<pre><code>Derived(int i, int j)
: super(i), J(j)
{
}
</code></pre>
<p>Or even when calling the method from the base class inside its overriden version:</p>
<pre><code>void Derived::doSomething()
{
super::doSomething() ;
// ... And then, do something else
}
</code></pre>
<p>It can even be chained (I have still to find the use for that, though):</p>
<pre><code>class DerivedDerived : public Derived
{
public :
typedef Derived super; // note that it could be hidden in protected/private section, instead
// Etc.
} ;
void DerivedDerived::doSomethingElse()
{
super::doSomethingElse() ; // will call Derived::doSomethingElse()
super::super::doSomethingElse() ; // will call Base::doSomethingElse()
// ... And then, do something else
}
</code></pre>
<p>Anyway, I find the use of "typedef super" very useful, for example, when Base is either verbose and/or templated.</p>
<p>The fact is that super is implemented in Java, as well as in C# (where it is called "base", unless I'm wrong). But C++ lacks this keyword.</p>
<p>So, my questions:</p>
<ul>
<li>is this use of typedef super common/rare/never seen in the code you work with?</li>
<li>is this use of typedef super Ok (i.e. do you see strong or not so strong reasons to not use it)?</li>
<li>should "super" be a good thing, should it be somewhat standardized in C++, or is this use through a typedef enough already?</li>
</ul>
<p><b>Edit:</b> Roddy mentionned the fact the typedef should be private. This would mean any derived class would not be able to use it without redeclaring it. But I guess it would also prevent the super::super chaining (but who's gonna cry for that?).</p>
<p><b>Edit 2:</b> Now, some months after massively using "super", I wholeheartedly agree with Roddy's viewpoint: "super" should be private. I would upvote his answer twice, but I guess I can't.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/220101#22010187Answer by paercebal for What was the strangest coding standard rule that you were forced to follow?paercebal2008-10-20T21:58:03Z2009-05-26T12:07:13Z<p>I once worked under the tyranny of the <em>Mighty Braindead VB King</em>.</p>
<p>The <em>VB King</em> was the pure master of MS Excel (<em>i.e.: He played with Excel while the developers worked with compilers</em>), and had unparalleled skills on VBA (<em>Hence his surname... And who cared about VB to contradict him about that?</em>) and DataBases (*i.e. no one cared to dispute this, and anyway, using his <em>manager power</em>, he did squatch out into oblivion the developer who once tried to contradict him on one of his numerous mistakes - i.e. stocked procedures against string-appended SQL requests*).</p>
<p>Of course, his <em>immense</em> skills gave him an <em>unique</em> vision of development problems and project management solutions: While not exactly coding standards in the strictest sense, the <em>VB King</em> regularly had new ideas about "coding standards" and "best practices" he tried (and oftentimes succeeded) to impose us.</p>
<ul>
<li><p>All C/C++ arrays shall start at index 1, instead of 0. Indeed, the use of 0 as first index of an array is obsolete, and has been superseded by Visual Basic 6's insightful array index management.</p></li>
<li><p>All functions shall return an error code: There are no exceptions in VB6, so why would we need them? (<em>i.e. in C++</em>)</p></li>
<li><p>Since "All functions shall return an error code" is not practical for functions returning meaningful types, all functions shall have an error code as first [in/out] parameter.</p></li>
<li><p>All our code will check the error codes (<em>this led to the worst case of VBScript if-indentation I ever saw... Of course, as "else" were never handled, no error was actually found until too late</em>)</p></li>
<li><p>Since we're working with C++/COM, starting this very day, we will code all our DOM utility functions in Visual Basic</p></li>
<li><p>ASP 115 errors are evil. For this reason, we will use On Error Resume Next in our VBScript/ASP code to avoid them</p></li>
<li><p>XSL-T is an object oriented language. Use inheritance to resolve your problems (<em>dumb surprise almost broke my jaw open this one day</em>).</p></li>
<li><p>Exceptions are not used, and thus should be removed. For this reason, we will uncheck the checkbox asking for destructor call in case of exception unwinding (<em>it took days for an expert to search the cause of all those memory leaks, and he almost chocked our project leader to death when he found out they had willingly ignored (and hidden) his technical note about checking the option again, sent handfuls of weeks before</em>)</p></li>
<li><p>catch all exceptions in the COM interface of our COM modules, and dispose them silently (<em>this led to our best speed-up ever seen, as suddenly, a slow module went magnitudes faster... because an exception would interrupt its processing at its beginning, but no one would know about the crash... You can't have speed and correct results, can you?</em>)</p></li>
<li><p>Starting today, our code base will split into four branches. We will manage their synchronization and integrate all bug corrections/evolutions by hand.</p></li>
</ul>
<p><strong>Edit:</strong> All but the C/C++ arrays, VB DOM utility functions and XSL-T as OOP language were implemented despite our protests. Of course, over the time, some were discovered, <em>ahem</em>, broken, and abandoned altogether.</p>
<p>Of course, the VB King credibility never suffered for that: Among the higher management, he remained a "top gun" technical expert, and for the developers, a dangerous incompetent.</p>
<p>This produced some amusing side effects, as you can see by following the link <a href="http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/216744#216744">http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/216744#216744</a></p>
http://stackoverflow.com/questions/902468/is-there-a-way-to-suppress-c-name-mangling/909614#9096142Answer by paercebal for Is there a way to suppress c++ name mangling?paercebal2009-05-26T08:35:38Z2009-05-26T08:35:38Z<p>"bradtgmurray" is right, but for Visual C++ compilers, you need to explicitely export your function anyway. But using a .DEF file as proposed by "Serge - appTranslator" is the wrong way to do it.</p>
<h2>What is the universal way to export symbols on Visual C++ ?</h2>
<p>Using the declspec(dllexport/dllimport) instruction, which works for both C and C++ code, decorated or not (whereas, the .DEF is limited to C unless you want to decorate your code by hand).</p>
<p>So, the right way to export undecorated funtions in Visual C++ is combining the export "C" idiom, as answered by "bradtgmurray", and the dllimport/dllexport keyword.</p>
<h2>An example ?</h2>
<p>As an example, I created on Visual C++ an empty DLL project, and wrote two functions, one dubbed CPP because it was decorated, and the other C because it wasn't. The code is:</p>
<pre><code>// Exported header
#ifdef MY_DLL_EXPORTS
#define MY_DLL_API __declspec(dllexport)
#else
#define MY_DLL_API __declspec(dllimport)
#endif
// Decorated function export : ?myCppFunction@@YAHF@Z
MY_DLL_API int myCppFunction(short v) ;
// Undecorated function export : myCFunction
extern "C"
{
MY_DLL_API int myCFunction(short v) ;
} ;
</code></pre>
<p>I guess you already know, but for completeness' sake, the MY_DLL_API macro is to be defined in the DLL makefile (i.e. the VCPROJ), but not by DLL users.</p>
<p>The C++ code is easy to write, but for completeness' sake, I'll write it below:</p>
<pre><code>// Decorated function code
MY_DLL_API int myCppFunction(short v)
{
return 42 * v ;
}
extern "C"
{
// Undecorated function code
MY_DLL_API int myCFunction(short v)
{
return 42 * v ;
}
} ;
</code></pre>
http://stackoverflow.com/questions/1449525/c-operator-overloading-memory-question/1449783#1449783Comment by paercebal on c++ operator overloading memory questionpaercebal2009-10-03T23:39:44Z2009-10-03T23:39:44Z@sbi : I wanted to detail everything, for educational purposes. The "final" version being at "About your code, version 2" section... ^_^ ...http://stackoverflow.com/questions/135129/should-one-prefer-stl-algorithms-over-hand-rolled-loops/135744#135744Comment by paercebal on Should one prefer STL algorithms over hand-rolled loops?paercebal2009-10-03T23:22:26Z2009-10-03T23:22:26ZI have a project where I don't have access to boost. So I wrote my own macro, a lot less cool, but still better than writing the whole for "header", and magnitudes better than the std::for_each..http://stackoverflow.com/questions/1450810/linux-vs-windows-programming/1451589#1451589Comment by paercebal on Linux vs Windows Programming?paercebal2009-09-20T22:20:35Z2009-09-20T22:20:35Z@ypnos: Thanks for your comment, but if you did bother to read my original answer you would have learned I DID try other IDEs. I guess this invalidate anything else you wrote. Thank you for your time, but next time, please don't comment answers you did not bother to read.http://stackoverflow.com/questions/1450810/linux-vs-windows-programming/1451589#1451589Comment by paercebal on Linux vs Windows Programming?paercebal2009-09-20T19:47:36Z2009-09-20T19:47:36Z@greayface: Wrong. There is a learning curve for everything. And if you want ot spend your time learning a language, you perhaps don't want to spend your time on bash scripts and compilation files. An expert of Vi will find it easy and powerful, or course. But this doesn't invalidate my argument that "clicking" is magnitudes easier than writing a bash script or using a mouseless or even a generic editor, and that drag'n'dropping your source files is easier than configuring some compilation script, whatever its kind. The question wasn't about existence of choice. It was about the easiest one.http://stackoverflow.com/questions/1450810/linux-vs-windows-programmingComment by paercebal on Linux vs Windows Programming?paercebal2009-09-20T19:05:01Z2009-09-20T19:05:01Z@Helen Neely: At work, I work on Visual Studio, and at home, on CodeBlocks. I'm a C++ coder. My code is cross platform. I'm using the best tools at hand. If those data don't make sense for you, then sorry... But at least, I didn't call you "blindingly ignorant" for not knowing my constraints and assuming some kind of religious statement.http://stackoverflow.com/questions/1450810/linux-vs-windows-programming/1451589#1451589Comment by paercebal on Linux vs Windows Programming?paercebal2009-09-20T18:41:01Z2009-09-20T18:41:01ZYeah apparently, we have different vision of what is being an admin. Now, I never wrote it was worse. I wrote it was harder. You know, in the kind of way it's harder to write a document from the shell than using Word or OpenOffice... And this was the point of the question... Sorry if I hurt your feelings... ^_^http://stackoverflow.com/questions/1449703/how-to-append-a-listt-object-to-another/1449735#1449735Comment by paercebal on how to append a list<T> object to anotherpaercebal2009-09-19T23:28:09Z2009-09-19T23:28:09Z+1. So right. If it could have been so easy and efficient to "slice" maps and sets...http://stackoverflow.com/questions/97447/c-api-for-returning-sequences-in-a-generic-way/97628#97628Comment by paercebal on C++ API for returning sequences in a generic waypaercebal2009-09-19T09:54:52Z2009-09-19T09:54:52ZSlightly Out of Topic: In C++, you have good chances to have the guarantee the libraries you are writing will be compiled with the same compiler used for the client application, or would not be exposing templated or inlined code in your interface (In some past job, we produced three binaries for each library we wrote, one per compiler we needed to support).http://stackoverflow.com/questions/1437482/challenging-exception-throwing-guidelines-why-so-much-more-respect-than-good-old/1438340#1438340Comment by paercebal on Challenging exception throwing guidelines: why so much more respect than good old error codes?paercebal2009-09-19T09:45:39Z2009-09-19T09:45:39Z@Crashworks: "both Sony and Microsoft's" Ok, so I assume then you are speaking about PlayStation and XBox game dev. In the game dev context, disabling stack unwinding is not premature optimisation. In general dev, it IS premature optimisation.http://stackoverflow.com/questions/1429440/c-class-or-struct-compatiblity-with-c-struct/1430118#1430118Comment by paercebal on C++ Class or Struct compatiblity with C structpaercebal2009-09-16T21:30:13Z2009-09-16T21:30:13Z+1. As said by George Clooney: "What else?"... ^_^ ...http://stackoverflow.com/questions/1432777/using-shared-libraries-vs-single-executable/1432814#1432814Comment by paercebal on using shared libraries vs single executablepaercebal2009-09-16T21:12:04Z2009-09-16T21:12:04Z@Basilevs: And hacker is right: In the current case, the compiler is already known, and unique for all static libraries. I see no reason for this to change should they try the "shared library" solution. So, basically, there is no need for a C interface between the shared libraries. IMHO, this "C interface" argument shows the question author is not familiar with shared libraries.http://stackoverflow.com/questions/1432777/using-shared-libraries-vs-single-executable/1432814#1432814Comment by paercebal on using shared libraries vs single executablepaercebal2009-09-16T21:10:33Z2009-09-16T21:10:33Z@Bavilevs: The solution is to offer two DLLs. On C++ DLL which will be used by client code on the same compiler and the other offering a C interface to the first. There is no need to penalize clients which share the same compilers by imposing them a C interface.http://stackoverflow.com/questions/1420685/c-good-habits-re-transitioning-to-c/1423015#1423015Comment by paercebal on C: Good Habits re: Transitioning to C++paercebal2009-09-16T20:17:32Z2009-09-16T20:17:32Z@jalf : You're right!http://stackoverflow.com/questions/1434937/namespace-functions-versus-static-methods-on-a-classComment by paercebal on Namespace + functions versus static methods on a classpaercebal2009-09-16T20:10:04Z2009-09-16T20:10:04Z@Rom: You're right about "old programmers", but wrong about "old compilers". Namespaces are correctly compiled since eons (I worked with them with Visual C++ 6, dating from 1998!). As for the "C with classes", some people in this forum weren't even born when that happened: Using this as an argument to avoid a standard and widespread C++ feature is a fallacy. In conclusion, only obsolete C++ compilers don't support namespaces. Don't use that argument as an excuse to not use them.http://stackoverflow.com/questions/1420685/c-good-habits-re-transitioning-to-c/1423015#1423015Comment by paercebal on C: Good Habits re: Transitioning to C++paercebal2009-09-16T19:06:32Z2009-09-16T19:06:32ZTo complete mgb's answer: For your production code, use STL. STL code will 99% ALWAYS be better than your own. Now, a good exercise on your free time is to create your own classes, and compare the result to STL's, both in interface, implementation and performance.