GMan

15,226
reputation
1214 views

Registered User

name GMan
member for 8 months
seen 23 mins ago
website
location US
age 20
Hi.
33m
revised How do I check if a C++ <string> starts with a certain string, and convert a substring to an int?
added 160 characters in body; added 351 characters in body; deleted 136 characters in body
39m
answered How do I check if a C++ <string> starts with a certain string, and convert a substring to an int?
1h
comment Portable thread-safe lazy singleton
Normally, you would have mutex lock in the constructor, and unlock in the destructor. Much simpler use, and exception safe.
3h
comment prefix to infix on stack
Thank you for trying the problem first, then showing us all the information you have. Thank you.
3h
comment Why should I not try to use “this” value after “delete this”?
I'm confused. How is the value of this undefined? It's the same value it was before, just like any other pointer.
4h
comment Fastest algorithm for evaluating large polynomials
Do you mean evaluating?
4h
accepted evaluate trig functions in degrees as opposed to radians
4h
answered evaluate trig functions in degrees as opposed to radians
5h
comment C++ struct size: 2+4+2+2+4 = 16
I'm pretty sure UNALIGNED as a macro is compiler specific too :)
5h
comment C++ struct size: 2+4+2+2+4 = 16
I don't think unaligned is a keyword. That would be compiler specific.
6h
revised Does anyone have experience with gcc’s LTO (C++)?
added 76 characters in body; edited title
9h
revised C++ good coding style - always fully qualify library types?
added 2 characters in body
9h
comment Size of an array
You're clearly only interesting in C++ answers, so may as well leave it at that :) C is not the same language, even if they happen to overlap on a few points.
9h
revised A dynamic buffer type in C++?
deleted 36 characters in body
9h
comment A dynamic buffer type in C++?
I claim C++ is just really some assembly instructions and you should use those. :P
9h
comment A dynamic buffer type in C++?
Ha, good point sbk. I was just focused on using memcpy :P
9h
awarded  Enlightened
10h
accepted A dynamic buffer type in C++?
10h
awarded  Nice Answer
10h
revised A dynamic buffer type in C++?
added 605 characters in body
10h
comment A dynamic buffer type in C++?
Taking the address of the first element is fairly common. Also, if you're reading network data and want it, you'll have to copy somewhere, which involves every byte. Some CPU's can copy multiple bytes at once, and your compiler will take advantage of that for you.
10h
revised A dynamic buffer type in C++?
added 492 characters in body; added 140 characters in body
10h
answered A dynamic buffer type in C++?
16h
comment How can I know where the segment of memory is all Zero
@Mark: No need to profile, really. Your code for sure checks each memory location twice, and probably does all sorts of nasty things with cache while it's at it.
16h
comment How can I know where the segment of memory is all Zero
While clever, this answer is slower than necessary. A simple for-loop is the correct answer (be it hand-written or from algorithm). You have to look at each byte of memory to know it every byte of memory is 0. the only way that isn't true is if you can make assumptions like "If this byte is 0, the next 3 are". that is of course only an example and not present true in your situation.
16h
awarded  Nice Answer
16h
comment C++ pre/post increment expression evaluation
i++ still modifies i. And according to 1), that's undefined behavior.
17h
comment C++ pre/post increment expression evaluation
And post-edit comment, this is now a completely valid answer, in my opinion.
17h
comment C++ pre/post increment expression evaluation
Well his analysis is probably logically correct; that's how the OP's implementation is doing it.
17h
comment C++ pre/post increment expression evaluation
The analysis of your first block is non-standard, because the first block has undefined behavior.
17h
answered C++ pre/post increment expression evaluation
17h
comment Is it possible to iterate over arguments in variadic macros ?
You still had a valid point :) Just not what you thought.
17h
revised Is it possible to iterate over arguments in variadic macros ?
edited body; added 17 characters in body
17h
answered Is it possible to iterate over arguments in variadic macros ?
19h
comment i need a cpp or c source code to find the tokens in my another file and display it.
But tags are for searching, and nobody searches for that. Ergo, the tag should no be used.
23h
comment C pointer arithmetic for 2D arrays
The index operator is pointer arithmetic in disguise.
23h
accepted Member function still const if it calls functions that break “constness”?
23h
answered Member function still const if it calls functions that break “constness”?
1d
comment Good Code Smells?
My code always smells of the finest fragrances, such that the programming Gods themselves couldn't create a better scent. Upon passing near my exquisite code, it's completely acceptable to fall to your knees in awe. You will weep from the beauty of it, and your unworthiness will cause you to fear it, lest it's purity destroy your soul.
1d
revised Why hasn’t a faster, “better” language than C come out?
added 1 characters in body
1d
awarded  Guru
1d
accepted Why hasn’t a faster, “better” language than C come out?
1d
comment Sorting 2D arrays in C/C++ in increasing values; knowing the original positon after sorting ?
Just a guess, but likely the compiler would pad it anyway. May as well use an int.
1d
awarded  Good Answer
1d
comment Why hasn’t a faster, “better” language than C come out?
Really? Last one I know of is C99. Is there a new standard coming out?
1d
comment void has unknown size in Visual C++
No, GCC giving an answer of 1 is an implementation detail. void is an incomplete type, and as such it should not be possible to take the size of it. GCC is in error, here.
1d
comment Why hasn’t a faster, “better” language than C come out?
But to clarify, simple for the compiler does mean simple to pick up. Perhaps not simple to implement complicated ideas in.
1d
comment Why hasn’t a faster, “better” language than C come out?
Correct. That's why it's so common in microcontrollers.
1d
comment Why hasn’t a faster, “better” language than C come out?
Well I'd prefer to have my response marked as the answer, not me :)
1d
awarded  Nice Answer