paercebal

8,374
reputation
299 views

Registered User

name paercebal
member for 1 year
seen 17 hours ago
website
location France
age 37

French C++ Developer with Web skills from previous work, and a taste for role-playing games

Quotes I like:

  • Prefer certain code ergonomics to supposed code performance.
  • Because I'm coding in C++, once the code compiles, it works.
  • If using the class keyword was enough to qualify as Object Oriented Programming, James Bond would be a Java Compiler...
    — (Programming) Principle of 007
Dec
11
revised Is this C++ structure initialization trick safe?
Added an hyperlink to litb's answer
Dec
11
revised Should operator<< be implemented as a friend or as a member function?
Added comments after Rhys' comments.
Dec
11
comment Should operator<< be implemented as a friend or as a member function?
@Rhys Ulerich: Of course. I use only the generic, templated version, if only because on Windows, you have to deal with both char and wchar_t code. The secondth version's only merit is to appear as more simple than the first. I'll clarify my post about that.
Dec
11
comment C++: do you (really) write exception safe code?
@frunsi: Exception safety has funny effects. For example, when you have a function calling only nofail/nothrow code, and when you realize that as a whole, the function is nofail/nothrow, too, there is a little moment of "shining" that somehow makes your day brighter. The same can be said for strong functions. When you have a function that seems to do a lot, and you can offer a strong/commit/rollback guarantee, you see your code from a new viewpoint. I started wrapping SQLite3 C code into C++ code, and offering strong/nothrow guarantees to transactional concept was both fun and rewarding.
Dec
11
comment C++: do you (really) write exception safe code?
@frunsi: Thanks for the comment. The try/catch block already separate the normal code and the error handling code, but I don't believe it should be more separated: error handling code must sometimes access normal code (i.e. local variables) to retrieve useful data (perhaps to try again the processing, or try it differently, etc.). Now, of course you're right: When I wrote "it's the only viable for C++", it's because it is the only viable for current C++ language specification. Research could well lead to other error handling means.
Dec
7
awarded  Good Answer
Dec
6
awarded  Mortarboard
Dec
6
awarded  Nice Answer
Dec
5
comment Is this C++ structure initialization trick safe?
@litb : Sorry, I misunderstood your original comment to my post, and it took AndreyT's own comment to make it right. As far as I see it, your answer is the right one, and I modified my post to clarify this point. Of course, +1 to your answer. Thanks!... ^_^ ...
Dec
5
comment Is this C++ structure initialization trick safe?
I agree with AndreyT's answer. You should consider litb's answer as the right one to your question (yeah, it means unconsidering mine, but hey, it's the game!)... ^_^ ...
Dec
5
revised Is this C++ structure initialization trick safe?
Modification after AndreyT and litb's comments
Dec
5
comment Is this C++ structure initialization trick safe?
@AndreyT : Oops... You're so right !!!
Dec
5
comment What do you miss when you have to use C instead of C++?
@Anacrolix: :-D
Dec
5
revised Using arrays or std::vectors in C++, what’s the performance gap?
Clarification after toto's comment.
Dec
5
comment Using arrays or std::vectors in C++, what’s the performance gap?
@toto : It is a misunderstanding: You should read it as "Using a static array will be at best ((as fast as the boost::array version) && (a lot less safe))". I'll edit the post to clarify this. By the way, thank you for the benefit of the doubt.
Dec
5
comment STL vectors with uninitialized storage?
@nobar : It depends on the MyStruct constructor. If it is empty, and inlined, and MyStruct members have a zero cost constructors, then the C++ compiler will optimise it to nothing. Then, we won't pay for it. Only for the resize.
Dec
5
comment C++: do you (really) write exception safe code?
The Java checked exception usability is highly exagerated. In fact, non-Java languages, they are NOT considered a success. This is why the "throw" statement in C++ is now considered obsolete, and C# never seriously considered implementing them (this was a design choice). For Java, the following document could be enlightning: googletesting.blogspot.com/2009/09/…
Dec
5
answered C++: do you (really) write exception safe code?
Nov
25
awarded  Good Answer
Nov
18
awarded  Popular Question
Nov
17
awarded  Good Answer
Nov
9
awarded  Notable Question
Nov
1
awarded  Notable Question
Oct
30
awarded  Nice Answer
Oct
24
awarded  Good Answer
Oct
19
answered How is STL iterator equality established?
Oct
8
awarded  Nice Question
Oct
3
comment c++ operator overloading memory question
@sbi : I wanted to detail everything, for educational purposes. The "final" version being at "About your code, version 2" section... ^_^ ...
Oct
3
comment Should one prefer STL algorithms over hand-rolled loops?
I 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..
Sep
30
accepted Can I use the STL if I cannot afford the slow performance when exceptions are thrown?
Sep
28
awarded  Nice Answer
Sep
20
revised Linux vs Windows Programming?
Misc. corrections
Sep
20
revised Linux vs Windows Programming?
Added edit about silly commenters
Sep
20
comment Linux vs Windows Programming?
@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.
Sep
20
comment Linux vs Windows Programming?
@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.
Sep
20
comment Linux vs Windows Programming?
@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.
Sep
20
comment Linux vs Windows Programming?
Yeah 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... ^_^
Sep
20
answered C++ Templates Error
Sep
20
answered Linux vs Windows Programming?
Sep
19
revised Qsort based on a column in a c-string?
Added "c" tag, for this is more a C question than a C++ one
Sep
19
comment how to append a list<T> object to another
+1. So right. If it could have been so easy and efficient to "slice" maps and sets...
Sep
19
answered c++ operator overloading memory question
Sep
19
comment C++ API for returning sequences in a generic way
Slightly 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).
Sep
17
awarded  Yearling
Sep
16
comment C++ Class or Struct compatiblity with C struct
+1. As said by George Clooney: "What else?"... ^_^ ...
Sep
16
comment using shared libraries vs single executable
@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.
Sep
16
comment using shared libraries vs single executable
@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.
Sep
16
revised using shared libraries vs single executable
Formatting, conclusion
Sep
16
answered using shared libraries vs single executable
Sep
16
comment C: Good Habits re: Transitioning to C++
@jalf : You're right!