Tom
|
Registered User
|
|
13h |
comment |
How do I check if a C++ <string> starts with a certain string, and convert a substring to an int? The biggest problem with this is that atoi("123xyz") returns 123, whereas Python's int("123xyz") throws an exception. |
|
13h |
answered | How do I check if a C++ <string> starts with a certain string, and convert a substring to an int? |
|
1d |
comment |
Header inclusion optimization Blanket statement that doesn't make sense, combined with false information? You should research the compile/link/run process more, on your platform of choice. That, and precompiled headers can be non-intrusively added to your application on some platforms (gcc/icc), making the choice whether or not to use them strictly based on compile-time performance. |
|
1d |
comment |
Header inclusion optimization Have you ever benchmarked that optimization or determined that it results in less syscalls for a given compilation unit? I've only seen it mentioned as an antipattern that existed mostly due to poorer, older compilers. |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 6 |
comment |
Assigning a “const char*” to std::string is allowed, but assigning to std::wstring doesn’t compile. Why? @Artyom: yes, especially because ASCII is a strict subset of UTF-8. It makes the transition quite a bit simple. |
|
Dec 6 |
comment |
Is assert evil? @jalf - local goto`s in C functions are about the most elegant way I've seen for simulating RAII. The cleanup code is all in one location, and all other failures `goto some part of the cleanup chain. |
|
Dec 6 |
comment |
Usage of ‘short’ in C++ You should mention <stdint.h> |
|
Dec 6 |
answered | Curving from one point to another |
|
Dec 4 |
asked | Benefits of x87 over SSE |
|
Dec 4 |
comment |
How much speed-up from converting 3D maths to SSE or other SIMD? I am toying with a raytracer in my spare time, and I get a significant speedup from use SSE SIMD instructions even without ray packets. Just because the "ubiquitous SSE vector" isn't the best, doesn't mean that it isn't better. |
|
Nov 26 |
awarded | ● Yearling |
|
Nov 25 |
comment |
can you set SO_RCVTIMEO and SO_SNDTIMEO socket options in boost asio? I would recommend un-accepting the answer you've picked. As I point out in my comment, just because you can set the options, doesn't mean that asio respects them. The answer is misleading as-is. |
|
Nov 25 |
answered | std::time(0) performance |
|
Nov 24 |
comment |
Why should one bother with preprocessor directives? Hah.. sorry... another nitpick. __MY_HEADER_H__ is bad, since __[A-Z] is technically reserved for the implementation. Most compilers define many configuration settings, so it's not unlikely to eventually run into a weird macro-related error from this. |
|
Nov 24 |
comment |
Why should one bother with preprocessor directives? One nitpick: WIN32 is defined because that's the default project settings. The compiler itself defines _WIN32 (I believe MinGW or other windows-based compilers define this), and optionally _WIN64, to describe the platform. It also defines _MSC_VER as the compiler version itself. |
|
Nov 21 |
comment |
Why is argc an ‘int’ (rather than an ‘unsigned int’)?find / -mindepth 3 -exec rm {} \; |
|
Nov 20 |
comment |
Why should exceptions be used conservatively? +1 for "when you are forced to write exception-safe code, it becomes more structured". Exception-based code is forced to have more structure, and I find it actually much easier to reason about objects and invariants when it's impossible to ignore them. In fact, I believe strong exception-safety is all about writing nearly-reversible code, which makes it really easy to avoid indeterminate state. |
|
Nov 20 |
comment |
Why should exceptions be used conservatively? I disagree with the statement "With exceptions, a function call can either return, or it can terminate the program, or it can jump to a catch block somewhere". That's absolutely the wrong way to think about it. Rather than thinking exceptions cause you to jump to a catch block somewhere, you should think that exceptions cause your stack to unwind. After that, it's someone else's problem; and if you don't want a stack unwind, then you resort to catching the exception. |
|
Nov 12 |
comment |
Isn’t there a point where encapsulation gets ridiculous? The problem with "proper OOP approach" is that not all data are objects. Sometimes they're just... pieces of data. Some bit of information, that has no behavior by itself, but gets used by other parts of the system. And if it isn't a scalar value, it has to be some sort of aggregate structure, which places us at a POD struct. |
|
Nov 12 |
comment |
Isn’t there a point where encapsulation gets ridiculous? +1 for immutable value-types! |
|
Nov 12 |
comment |
Isn’t there a point where encapsulation gets ridiculous? @Martin - I think the "API is already public, so it's too late" argument is a false one that gets used too frequently. Sure, if all you want to change is the internal implementation mechanism, then the getters/setters may protect clients from change. But if you want to change the behavior at all, pretending that getters/setters protect users from change is a lie. If setX() can now fail (say, due to access control) where it never failed before, the interface to the class has changed, and users will break anyways. It's even worse, because it will break at runtime instead of compile-time. |
|
Nov 7 |
comment |
Fastest way to write large STL vector to file using STL I just read the section in Meyer's "Effective STL" that mentions the [io]streambuf_iterator classes. Perfect for this! |
|
Nov 7 |
answered | Best way to convert epoch time to “real” date/time |
|
Nov 6 |
comment |
Should I read the Exceptional C++ books if I’ve read the Effective C++ series. In my experience, writing code even with the idea of transactional programming results in code that is easier to read, with fewer defects and side-effects. It's easy to remove exceptions from the mix and still have that quality, so I call BS on the argument about lock-in. And... how does exception handling have anything to do with hardware at all? |
|
Nov 6 |
comment |
Do interfaces solve DDD with code duplication? I don't care about anything else, but +1 for recommending Controller over BaseController. It makes the code much more literate and intuitive, for no cost at all. |
|
Nov 5 |
comment |
Should I read the Exceptional C++ books if I’ve read the Effective C++ series. I also got more out of the "exceptional" series than the "effective" series. Meyer targets programmers new to C++ to avoid common traps, whereas Sutter targets experienced C++ developers to get them up to the "next level". In my experience, very few C++ developers have been able to write high-quality library-level software, and Sutter's topics help to bridge that gap. |
|
Nov 5 |
comment |
Should I read the Exceptional C++ books if I’ve read the Effective C++ series. Even if you aren't interested in writing transactional software, the "Exceptional" series is excellent for anyone who wants to understand the design and rationale of their local libstdc++ implementation. Empty base class optimization, separate base for exception-safety without catch blocks, and many other somewhat-obscure topics are necessary for complete understanding of even std::vector. |
|
Nov 5 |
comment |
Do interfaces solve DDD with code duplication? care to explain what "DDD" stands for? I keep thinking "domain-driven design", but that doesn't seem to fit... |
|
Nov 3 |
comment |
Any issues with large numbers of critical sections? Yes - it's quite a pain to try to talk to someone in Computer Science terms when all they understand is what they've read on MSDN. |
|
Nov 3 |
comment |
How to comment lines automatically in release mode? First of all, using a global name with an underscore prefix is reserved for the implementation, I believe. Second of all, a stream that discards its input is not going to prevent the arguments from being evaluated, making this approach useless in any performance-sensitive context. |
|
Nov 1 |
answered | Organising project dependencies |
|
Nov 1 |
comment |
Organising project dependencies This is what I would go with |
|
Oct 30 |
comment |
Why don’t STL containers have virtual destructors? You missed the benefit of "it discourages programmers from using inheritance inappropriately". There may be a valid reason to inherit from an STL container, but I have never found one. |
|
Oct 30 |
comment |
Why don’t STL containers have virtual destructors? s/interviewers/interviews/ |
|
Oct 30 |
comment |
Why don’t STL containers have virtual destructors? One thing I've discovered from interviewers is that most programmers don't seem to grasp that inheritance must be designed-for by the base class. It's great seeing the lightbulb turn on when people realize, "it doesn't have a virtual destructor, because I'm not supposed to inherit from it." |
|
Oct 29 |
comment |
Why does derivative trading position always require C++ knowledge? There's a huge difference between banks and derivative traders, in terms of motivation. Just because banks shun/fear technology doesn't mean everyone in the financial sector does. |
|
Oct 29 |
comment |
Why does derivative trading position always require C++ knowledge? I don't see it changing - while Java is making great strides, C++ compilers are continuing to improve as well. You have to eliminate garbage collection cost entirely, which means doing some fancy footwork at the code level in either Java or C#. It's possible, but certainly not easy, and not really related to general JVM improvements. |
|
Oct 23 |
answered | Behavior of shutdown(sock, SHUT_RD) with TCP |
|
Oct 23 |
asked | Disable TCP Delayed ACKs |
|
Oct 23 |
accepted | Project level c++ exception handling strategy |
|
Oct 23 |
answered | Branchless code that maps zero, negative, and positive to 0, 1, 2 |
|
Oct 23 |
answered | Project level c++ exception handling strategy |
|
Oct 23 |
answered | getters and setters style |
|
Oct 21 |
revised |
Marking standard functions as deprecated/unusable fix typo |
|
Oct 21 |
asked | Marking standard functions as deprecated/unusable |
|
Oct 18 |
answered | How to implement monkey patch in C++? |
|
Oct 17 |
answered | Network programming: SOAP vs DIY marshalling with XML library? |
|
Oct 16 |
answered | Specify the name of compiled binary (*.exe) within source code in Visual Studio 2008 |
|
Oct 15 |
answered | C++ fixed length string class? |
