| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 2 years, 11 months |
| seen | 2 days ago | |
| stats | profile views | 335 |
|
1d |
awarded | c++ |
|
2d |
answered | How to do parsing istringstream C++? |
|
May 15 |
comment |
breaking down an input sentence regex |
|
May 15 |
answered | std::wstring not working with the [] operator of std::map<const wchar_t*, const char*> |
|
May 15 |
answered | Template to get map element with default value |
|
May 15 |
answered | Too many constructor arguments in deepest class of inheritance? |
|
May 15 |
comment |
Why is C++ heap allocation so slow compared to Java's heap allocation? You are not comparing apples to apples here. JVM uses a pre-allocated memory pool for this situation. C++ has no pre-built functionality for such a construct and instead queries the OS memory manager for every allocation. It's not uncommon for people to write a system that provides what JVM does here (a memory pool allocator) in C++. Also, this is a legit question and all the downvotes are BS. |
|
May 15 |
comment |
Why does the Standard prohibit friend declarations of partial specializations? Can you give an example where it would (if allowed) cause the picking of a specialization to be ambiguous? |
|
May 15 |
comment |
Compress short fixed length string (52 characters) down to less than 40 I don't think any compression is going to guarantee a certain % for any arbitrary input. If you need a rock solid guarantee to get 52 to under 40 losslessly you might be in trouble. |
|
May 14 |
comment |
Exception Handling : But do not end up in the catch block Go to Debug -> Exceptions in VS and select C++ Exceptions and then run the program in the debugger. You'll break when and where an exception is thrown. |
|
May 14 |
comment |
Design for generic utility code with no 'member' data I would say B should never be done. A can be named to connote any strength of relation, for example namespace std is pretty damn generic, but namespace this_thread is more specific, and namespace placeholders is extremely specific. |
|
May 14 |
comment |
dynamic allocation of array for array of pointers It's just invalid syntax. Why can't you write char **p = give me some pointers;? This is the same problem. |
|
May 14 |
answered | std::map - how to change key sorting? |
|
May 14 |
comment |
What is the difference between is_trivially_copyable and is_trivially_copy_constructible? @ChristianRau I commented before he edited to add those lists. |
|
May 13 |
comment |
What is the best way to slurp a file into a std::string in c++? I know this is very old, but I just did some profiling of several methods and I found that getting the file size and calling in.read into a buffer preallocated to the correct size is much faster than this. Around 10x. I'm using VS2012 and testing with a 100mb file. |
|
May 13 |
comment |
What is the best way to slurp a file into a std::string in c++? I just tested this, it appears to be much slower than getting the file size and calling read for the whole file size into a buffer. On the order of 12x slower. |
|
May 13 |
revised |
Foreach range iteration over a vector<int> - auto or auto&? added 1381 characters in body |
|
May 13 |
answered | Foreach range iteration over a vector<int> - auto or auto&? |
|
May 13 |
revised |
C++11: pointers to member function using std::function::target() added 2 characters in body |
|
May 13 |
answered | C++11: pointers to member function using std::function::target() |