Pieter

3,871
Reputation
200 views

Registered User

Name Pieter
Member for 1 year
Seen 15 hours ago
Website
Location Belgium
Age 32
Nov
24
comment NULL pointer is the same as deallocating it?
If you're only allocating a pointer which you want to keep alive till the end of the scope, a scoped_ptr is a better choice.
Nov
18
comment Memory access violation. What’s wrong with this seemingly simple program?
Using libraries when they are available is almost always the smarter thing to do. Also, if it's such a basic thing, then why did you need help from the SO community? On top of that, strlen() is a library function...
Nov
16
accepted Why aren’t exceptions in C++ checked by the compiler?
Nov
16
awarded  
Nov
9
comment STL: How to check that an element is in a std::set ?
@Frerich that's only relevant for multiset and multimap I thought? Still good to point out though :)
Nov
9
answered STL: How to check that an element is in a std::set ?
Nov
9
answered Howto create combinations of several vectors without hardcoding loops in C++?
Oct
23
accepted transform_iterator compile problem
Oct
11
comment C++ and Java performance
A, theoretical, smart enough compiler would realize that the vector is thrown away after it's filled, and optimize testvector() away completely. What I'm getting at, such contrived do-nothing test programs are, literally, meaningless.
Oct
5
answered c++ including files problems
Sep
30
revised Tiny serializer
added 183 characters in body
Sep
30
answered Tiny serializer
Sep
29
revised c++ templates: header files still broken?
typo
Sep
29
revised c++ templates: header files still broken?
added 653 characters in body; added 29 characters in body; added 127 characters in body
Sep
29
answered c++ templates: header files still broken?
Sep
29
comment C++: Copy contructor: Use Getters or access member vars directly?
If the setter/getter does something complicated, it should already have been done to the source object, or you have a bug. If a copy constructor does anything beyond the semantic equivalent of duplicating the data of the source object, you're hiding a bug.
Sep
29
comment C++: Copy contructor: Use Getters or access member vars directly?
I see what you're trying to say, but for a copy constructor that's a moot point. If an object exists with a string, it should already be white space trimmed, null checked, etc. by the regular constructors and setters. If a copy constructor needs to change a member in any way, that means the original object was wrong, and hence there's a bug in a regular constructor or setter. Said bug should not be hidden by the copy constructor!
Sep
29
comment C++: Copy contructor: Use Getters or access member vars directly?
the 'validating' is a moot point, if certain values are invalid for m_str1, there should never exist such an object in the first place. At most you could assert to catch errors in the validating process via the setters and (regular) constructors.
Sep
28
comment C++ Remove new line from multiline string
the question was, "what's the most efficient way...", so I guess efficiency is important ;)
Sep
28
comment runtime error (SIGSEGV)
It's only fine for certain inputs... add checks for all your inputs and it'll work fine too. this is not a compiler related problem
Sep
27
comment C++ reference type recommended usage
I completely agree with your reasoning, but just wanted to add that just for optional semantics you can also use boost::optional boost.org/doc/libs/…
Sep
26
answered C++ reference type recommended usage
Sep
26
revised runtime error (SIGSEGV)
edited tags
Sep
26
answered runtime error (SIGSEGV)
Sep
21
comment c++ constructers and destructers
deleting a NULL pointer does nothing according to the C++ spec, deleting a pointer twice however, invokes undefined behavious (you'll probably crash). A destructor is always called for stack objects. So if you wouldn't set the pointer to NULL, you would get a crash when an Animal object goes out of scope if you called destroy...
Sep
21
accepted c++ constructers and destructers
Sep
21
answered c++ constructers and destructers
Sep
20
comment C++ design issue
That's all syntactic mumbo jumbo. One simple question: in your design, an adaptation of the question, does a B object ask an A object to create a B object? Yes... What could possibly be replaced / tested / substituted /etc. doesn't make the slightest difference to the semantics that a B object asks an A object to create a B object. Is this really that hard to grasp?
Sep
18
comment C++ design issue
I'm not talking about a code dependency, obviously you made that disappear via an extra level of indirection. Semantically however, nothing changed, B relies on A to create a B, no matter how many functions, interfaces, classes you add to obscure that fact, it's still there. You just made it a lot harder to see...
Sep
18
answered Unable to create an operator== for a generic type?
Sep
16
comment C++ design issue
You just hid the cyclic dependency with this, it's not at all gone. B still calls A which creates B, you simply made a lot harder to see. Semantic problems can not be solved with some syntactic juggling. To paraphrase you: If you worked for me I wouldn't let you do this. I rather have not-so-nice designs stand out like a pimp on miss universe's cheek, than hidden behind a few layers of mascara
Sep
14
answered C# running faster than C++?
Sep
14
comment C# running faster than C++?
I looked at some of the source code on the website in your profile, your C++ is, frankly, rather terrible. If you don't want to post source code (as your secion on your "big project" suggests), that's fine, but look for some good book lists on C++ here on stackoverflow. You've got a lot to learn...
Sep
12
awarded  Yearling
Sep
10
comment Handling relations between multiple subversion projects
while my question tackled a different kind of svn layout problem, I received a very good answer regarding svn:externals that might interest you stackoverflow.com/questions/198726/… hth
Sep
10
revised g++ external reference error
added C++ tag
Sep
10
answered g++ external reference error
Sep
10
comment Reorder vector using a vector of indices
@Potatoswatter: yes, that's the way stackoverflow works..., never really understood the reasoning when one guy does the (vast majority of the) editing i. It's like they want to discourage you from improving your answer or something...
Sep
9
comment Boost.Build conditional library compilation per-project
for the record, I use Boost.Build too for various projects, but never had problems like that
Sep
9
comment Boost.Build conditional library compilation per-project
no, if .cpp + dependent.h + defines doesn't change, nothing should be rebuilt, from your "there's a separate version of config library per project." I got that the defines are different for each project...
Sep
9
answered Is there an Xcode syntax colouring for Rails, Ruby, Erb? If not, how can I write one myself?
Sep
9
answered Boost.Build conditional library compilation per-project
Sep
9
accepted C++ #define preprocessor
Sep
9
answered C++ #define preprocessor
Sep
9
accepted Initialising an anonymous mutex-lock-holding class instance in the LHS of a comma operator
Sep
8
comment Initialising an anonymous mutex-lock-holding class instance in the LHS of a comma operator
it didn't occur to me a compiler would parse int(a), int(b), Func(); as a declaration.... updated my answer, thanks for actually trying it in a compiler
Sep
8
revised Initialising an anonymous mutex-lock-holding class instance in the LHS of a comma operator
added 79 characters in body
Sep
8
revised Initialising an anonymous mutex-lock-holding class instance in the LHS of a comma operator
added tags
Sep
8
revised Initialising an anonymous mutex-lock-holding class instance in the LHS of a comma operator
added 196 characters in body
Sep
8
answered Initialising an anonymous mutex-lock-holding class instance in the LHS of a comma operator