| bio | website | pubby8.wordpress.com |
|---|---|---|
| location | United States | |
| age | 93 | |
| visits | member for | 2 years, 3 months |
| seen | 3 mins ago | |
| stats | profile views | 1,498 |

|
12h |
comment |
C++ Testing Framework Recommendations This one's kind of nice, but I'm not sure if it suits your needs: github.com/philsquared/Catch |
|
14h |
comment |
Get RGB Channels From Pixel Value Without Any Library Just look up "bmp file reading". There isn't anything remotely special about it. |
|
16h |
comment |
Does the C++ compiler generate “this” pointer for all member methods, or only for those who reference members? He's asking how the implementation compiles it, which can't be answered by the standard. |
|
16h |
comment |
Does the C++ compiler generate “this” pointer for all member methods, or only for those who reference members? The answer is "it depends". This is why member functions aren't directly convertible to function pointers, for example. |
|
17h |
answered | Different casting operators used by different compilers |
|
18h |
comment |
Why 4 process better than 4 thread? Well, does static volatile get shared across processes? |
|
19h |
comment |
differences between new char[n] and new (char[n]) @aschepler I think VLAs have type of int*. They int(*)[n] can't exist as a type. |
|
21h |
comment |
C++ ptr_fun not finding void parametered functionsboost::bind then? Heh. |
|
21h |
comment |
C++ ptr_fun not finding void parametered functionsptr_fun is deprecated. Use std::bind. |
|
21h |
answered | What are these c++ syntax equilvalent to? |
|
21h |
revised |
What are these c++ syntax equilvalent to? added 44 characters in body |
|
22h |
comment |
Inheriting vector class with different types Free functions, not member functions. |
|
22h |
comment |
Inheriting vector class with different types If you want to define new functions for vector then define new functions for vector. You don't need inheritance for this. |
|
22h |
revised |
Shell script to get list of defined users on Linux? added 4 characters in body |
|
22h |
comment |
Value of return is not same as value actually returned? sscce please..... |
|
1d |
comment |
Same and Different Random Numbers generation Seeds........... |
|
1d |
answered | Is there a better function that rand()? |
|
1d |
comment |
Is there a better function that rand()? You should only call srand once: on program startup. |
|
1d |
comment |
Are 'const' values inside a container actually disallowed?push_back doesn't require CopyAssignable either... |
|
1d |
comment |
Are 'const' values inside a container actually disallowed? Calling the constructor should be fine, and works on my GCC. CopyAssignable is only required for certain operations. |