AndreasT

953
Reputation
127 views

Registered User

Name AndreasT
Member for 8 months
Seen 22 hours ago
Website
Location
Age
Nov
19
comment C++ IDE that supports Scott Meyer’s advice: Prefer non-member non-friend functions over members
Well, I could map this in vim. It works ... ok. Do you know if there is a ctags way of doing that query? I use specific tags files for omnicomplete etc. This should be doable with those, shouldn't it?
Nov
11
asked C++ IDE that supports Scott Meyer’s advice: Prefer non-member non-friend functions over members
Nov
11
comment C++: Performance impact of BIG classes (with a lot of code)
You pointed to one intrigueing article. But my concern is taht these people seem to code much different than most normal people. I love member functions because in every noteworthy IDE they get proposed to me and tell me what that class can do. This is not really possible with non-member non-friend functions.
Nov
8
comment Boost - cross compile - “from Linux” “to Windows”
Well it works. "Acceptable" or not.
Oct
28
comment What’s your most controversial programming opinion?
+1 rezzif: That hadn't occured to me! Nice one!
Oct
28
revised computer vision: extracting info about a shape given a contour (e.g. pointy, round…)
edited title
Oct
27
asked computer vision: extracting info about a shape given a contour (e.g. pointy, round…)
Oct
22
comment cmake: How to make a script for copying Data files accompanying my program
Thanks! I am surprised that there are so few answers to this question. CMake is widely used now, but still poorly documented. Very few people seem to really grok cmake.
Oct
20
asked cmake: How to make a script for copying Data files accompanying my program
Sep
26
comment Qt4.5: Implicitly shared QImage: are methods like .bits() always copying (documentation unclarity)
Damn. They didn't even document this... Thx! Thx too for reminding me that this is open source and I just have to have a look at it!
Sep
25
asked Qt4.5: Implicitly shared QImage: are methods like .bits() always copying (documentation unclarity)
Sep
18
comment DirectShow: ieee1394id <- does that also describe USB devices?
I know that. I want to know, If in the DirectShow world, it means the same for all capture devices, USB as well as FireWire/I.Link
Sep
18
asked DirectShow: ieee1394id <- does that also describe USB devices?
Sep
15
asked C++: Performance impact of BIG classes (with a lot of code)
Sep
12
comment C++ class dependencies
@pavel: er... what????
Sep
12
comment How to break circle of evening stupidity?
Thanks for that one :). I'll get some good laughs out of that..!
Sep
12
comment How to break circle of evening stupidity?
Your OFFICE??. Your office sounds like my Living room! Damn! I hate you :)
Sep
11
answered Run-time type information in C++
Sep
9
answered Boost - cross compile - “from Linux” “to Windows”
Sep
7
comment std c++ container element destruction and insertion behaviour
Expensive instanciation or not, reallocation in itself is expensive. Well I know about const refs, it just doesn't matter in the example, so I got lazy ;-)
Sep
7
revised std c++ container element destruction and insertion behaviour
added 489 characters in body
Sep
7
comment std c++ container element destruction and insertion behaviour
It seems specific to VS2005
Sep
7
comment std c++ container element destruction and insertion behaviour
The black box argument is valid, however, I always hoped these were not stupid black boxes :) . <subjective!>Well yet another M$ disappointment.</subjective>
Sep
7
revised std c++ container element destruction and insertion behaviour
added 2 characters in body
Sep
7
comment std c++ container element destruction and insertion behaviour
@Pieter: I cleared up the program for posting, but copied old output. I corrected this. The result is the same however.
Sep
7
comment std c++ container element destruction and insertion behaviour
Thats most definately true!
Sep
7
revised std c++ container element destruction and insertion behaviour
added 453 characters in body
Sep
7
revised std c++ container element destruction and insertion behaviour
added 123 characters in body
Sep
7
comment std c++ container element destruction and insertion behaviour
well and what about the surplus copies and the mem leak (which is actually not happening, see above)
Sep
7
comment std c++ container element destruction and insertion behaviour
Yes, both release and debug give the same output.
Sep
7
comment std c++ container element destruction and insertion behaviour
It is easy to try yourself, just copy paste into an empty project and, add includes of iostream, vector and string, and go.
Sep
7
comment std c++ container element destruction and insertion behaviour
Yes. Same result.
Sep
7
revised std c++ container element destruction and insertion behaviour
correction
Sep
7
revised std c++ container element destruction and insertion behaviour
clarification
Sep
7
asked std c++ container element destruction and insertion behaviour
Aug
31
answered Where can I find good C++ source code?
Aug
28
answered Best approach for common functionality
Aug
28
answered How bad is it, in theory, if every class would include every other class?
Aug
27
comment C++ performance of accessing member variables versus local variables
Since class data is placed consecutively into memory, the first time you access any member data, almost all of the class's state should be loaded as a cache line into L1. After that, the accesses should be identical.
Aug
27
comment Grouping similar types of member variables together
Just want to add a little pointer to alistairs answer below! Members will be initialized in the order they appear in the class definition, not in the order they appear in the ctor initializer list! So you have to bear this in mind and cannot order them completely to your liking!
Aug
27
comment Grouping similar types of member variables together
+1 Yeah. This is important to know and care about.
Aug
27
comment How to get a pointer to the beginning of a file in C++
"not portable" irked me somewhat and I did a lookup. You are absolutely right! You can only use this function in the linux world, other unixoids or windows don't know this command or implement it differently. Still, if you target linux only, it should be the best possible way.
Aug
27
comment How to get a pointer to the beginning of a file in C++
This bypasses userspace! Meaning you cannot actually do anything with the data, you can just order the kernel to copy it around! The question is unclear if that is all that should be done. If it is, this should be the fastest possible way.
Aug
26
comment bit twiddling: find next power of two
that is cool! thx!
Aug
26
comment bit twiddling: find next power of two
wtf! 8-) , will check it out. Thx
Aug
24
comment Bit twiddling: find next power of two with templates in c++
Part of why the solution I tried to templatize above was so nice is, that I only need ld(nbits) iterations instead of nbits iterations. See the link to the original solution. This way I cannot throw k "overboard". I know I messed up when I posted the buggy code. Sorry again.
Aug
24
comment Bit twiddling: find next power of two with templates in c++
Thanks for numeric_limits!!! Another great tool in the toolbox :)
Aug
24
revised Bit twiddling: find next power of two with templates in c++
added 76 characters in body; added 6 characters in body; added 71 characters in body
Aug
24
comment Bit twiddling: find next power of two with templates in c++
No, I am sorry. This does not work. It does 4 shifts when it has to do 5. My example was also crap. Which makes almost all answers bogus. I am very sorry.
Aug
24
comment Bit twiddling: find next power of two with templates in c++
hah, thx. The amount of bits I shift is of course irrelevant. (At least on most architectures)