User Max Lybbert - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T23:29:35Zhttp://stackoverflow.com/feeds/user/10593http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/247538/which-standard-c-classes-cannot-be-reimplemented-in-c/248891#2488912Answer by Max Lybbert for Which standard c++ classes cannot be reimplemented in c++?Max Lybbert2008-10-30T00:14:19Z2009-12-06T08:15:12Z<p><code>std::type_info</code> is a simple class, although populating it requires <code>typeinfo</code>: a compiler construct.</p>
<p>Likewise, exceptions are normal objects, but throwing exceptions requires compiler magic (where are the exceptions allocated?).</p>
<p>The question, to me, is "how close can we get to <code>std::initializer_list</code>s without compiler magic?"</p>
<p>Looking at <a href="http://en.wikipedia.org/wiki/C%2B%2B0x#Initializer%5Flists" rel="nofollow">wikipedia</a>, <code>std::initializer_list<typename T></code> can be initialized by something that looks a lot like an array literal. Let's try giving our <code>std::initializer_list<typename T></code> a conversion constructor that takes an array (i.e., a constructor that takes a single argument of <code>T[]</code>):</p>
<pre><code>namespace std {
template<typename T> class initializer_list {
T internal_array[];
public:
initializer_list(T other_array[]) : internal_array(other_array) { };
// ... other methods needed to actually access internal_array
}
}
</code></pre>
<p>Likewise, a class that uses a <code>std::initializer_list</code> does so by declaring a constructor that takes a single <code>std::initializer_list</code> argument -- a.k.a. a conversion constructor:</p>
<pre><code>struct my_class {
...
my_class(std::initializer_list<int>) ...
}
</code></pre>
<p>So the line:</p>
<pre><code> my_class m = {1, 2, 3};
</code></pre>
<p>Causes the compiler to think: "I need to call a constructor for <code>my_class</code>; <code>my_class</code> has a constructor that takes a <code>std::initializer_list<int></code>; I have an <code>int[]</code> literal; I can convert an <code>int[]</code> to a <code>std::initializer_list<int></code>; and I can pass that to the <code>my_class</code> constructor" (<strong>please read to the end of the answer before telling me that C++ doesn't allow two implicit user-defined conversions to be chained</strong>).</p>
<p>So how close is this? First, I'm missing a few features/restrictions of initializer lists. One thing I don't enforce is that initializer lists can only be constructed with array literals, while my <code>initializer_list</code> would also accept an already-created array:</p>
<pre><code>int arry[] = {1, 2, 3};
my_class = arry;
</code></pre>
<p>Additionally, I didn't bother messing with rvalue references.</p>
<p>Finally, this class only works as the new standard says it should if the compiler implicitly chains two user-defined conversions together. This is specifically prohibited under normal cases, so the example still needs compiler magic. But I would argue that (1) the class itself is a normal class, and (2) the magic involved (enforcing the "array literal" initialization syntax and allowing two user-defined conversions to be implicitly chained) is less than it seems at first glance.</p>
http://stackoverflow.com/questions/1788659/seemingly-basic-c-question/1788988#17889882Answer by Max Lybbert for Seemingly basic C++ questionMax Lybbert2009-11-24T09:38:33Z2009-11-25T00:58:54Z<blockquote>
<p>Does ANYONE know how to deal with these enums, and how I can pass them into the contentTransferEncodingToString function?</p>
</blockquote>
<p>Several answers have shown the basic way to use <code>enum</code>s. When trying them you're getting error messages that the syntax is correct, but that the methods that use those <code>enums</code> are not accessible from the scope you're in.</p>
<p>The answer, then, is to get into a scope where you can access what you want.</p>
<p>The methods in question are apparently <code>protected</code>, which means the way to access them is through a derived class. I'm not saying this is good design, but it's clearly what POCO's designers expect you to use.</p>
http://stackoverflow.com/questions/1788693/move-c-program-to-foreground/1788954#17889540Answer by Max Lybbert for move c++ program to foregroundMax Lybbert2009-11-24T09:32:58Z2009-11-24T09:32:58Z<p>There is no C++ command for this. <code>fork()</code> and <code>daemon()</code> aren't C++ commands. They are POSIX commands (it helps to keep the difference in mind).</p>
<p>You can increase how often your program is scheduled time on the CPU with the command line utility <a href="http://opengroup.org/onlinepubs/007908799/xcu/renice.html" rel="nofollow"><code>renice</code></a>, but that won't get you any windows or messages from the program.</p>
http://stackoverflow.com/questions/1740366/programmatically-parse-and-edit-c-source-files/1740557#17405570Answer by Max Lybbert for Programmatically parse and edit C++ Source FilesMax Lybbert2009-11-16T07:07:43Z2009-11-16T07:07:43Z<p>The Mozilla project has <a href="http://blog.mozilla.com/tglek/2009/11/06/fsoss-dehydra-update/" rel="nofollow">a tool that does this</a>.</p>
http://stackoverflow.com/questions/1732933/getting-rid-of-pre-compiled-headers/1733638#17336380Answer by Max Lybbert for Getting rid of pre-compiled headersMax Lybbert2009-11-14T07:55:14Z2009-11-14T07:55:14Z<blockquote>
<p>How does one get rid of Pre-compiled headers, conceptually?</p>
</blockquote>
<p>Precompiled headers are an optimization. Conceptually you get rid of the precompiled headers by simply using the regular headers instead.</p>
<blockquote>
<p>do you take the contents of a .pch and move them to a core.h and include that in all of your classes .h files?</p>
</blockquote>
<p>I know programmers who do this. Personally I prefer to know which functions I'm using and where they came from, so I make sure each file <code>#include</code>s all the headers needed to compile that file (and only the headers needed to compile that file). Then again, this does require constantly checking if a header is no longer necessary.</p>
http://stackoverflow.com/questions/1730739/using-non-abstract-class-as-base/1731060#17310601Answer by Max Lybbert for Using non-abstract class as baseMax Lybbert2009-11-13T18:38:00Z2009-11-13T18:38:00Z<blockquote>
<p>What are the pros and cons that would help me to choose the better approach.</p>
</blockquote>
<p>It's legal to derive from a class with no virtual functions, but that doesn't make it a good idea. When you derive from a class <em>with</em> virtual functions, you often use that class through pointers (eg., a class <code>Derived</code> that inherits from <code>Base</code> is often manipulated through <code>Base*</code>s). That doesn't work when you don't use virtual functions. Also, if you have a pointer to the base class, <code>delete</code>-ing it can lead to a memory leak.</p>
<p>However, it sounds more like these classes aren't being used through pointers-to-the-base. Instead the base class is simply used to get a lot of built in functionality, although the classes aren't related in the normal sense. <a href="http://en.wikipedia.org/wiki/Inversion%5Fof%5Fcontrol" rel="nofollow">Inversion of control</a> (and <a href="http://en.wikipedia.org/wiki/Object%5Fcomposition" rel="nofollow">has-a relationships</a>) is a more common way to do that nowadays (split the functionality of the base class into a number of interfaces -- pure virtual base classes -- and then have the objects that currently derive from the base class instead have member variables of those interfaces).</p>
<p>At the very least, you'll want to split the big base class into well-defined smaller classes and use those (like <a href="http://en.wikipedia.org/wiki/Mixin" rel="nofollow">mixins</a>), which sounds like your second option.</p>
<p>However, that doesn't mean rewrite all the other code that uses the blob base class all in one go. That's a big undertaking and you're likely to make small typos and similar mistakes. Instead, buy yourself copies of <a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow"><em>Working Effectively With Legacy Code</em></a> and <a href="http://rads.stackoverflow.com/amzn/click/0201633620" rel="nofollow"><em>Large-Scale C++ Software Design</em></a>, and do the work piecemeal.</p>
http://stackoverflow.com/questions/1730427/display-message-in-windows-dialogue-box-using-cout-c/1730954#17309541Answer by Max Lybbert for Display message in windows dialogue box using "cout" - C++Max Lybbert2009-11-13T18:13:31Z2009-11-13T18:13:31Z<blockquote>
<p>Can a windows message box be display using the cout syntax?</p>
</blockquote>
<p>You can't do it with <code>std::cout</code>. <code>std::cout</code> doesn't even promise to handle Unicode/wide characters (see <code>std::wcout</code>), although Windows's <code>cout</code> has no trouble with wide characters.</p>
<p>You could easily do it with the same <em>syntax</em>; that is, you could easily write a library that overloads <code>operator<<</code> to display dialog boxes. Trying to pass all the information to the dialog box that way would be very difficult, though (how would you you say which buttons to show, what those buttons should do when pressed, where those buttons should be, and the size and position of the window itself?).</p>
<p>You may want to look at something like <a href="http://en.wikipedia.org/wiki/Ncurses" rel="nofollow">ncurses</a>. The syntax is different, but I have a
feeling it's what your coworker is looking for.</p>
http://stackoverflow.com/questions/1709562/coding-standards-coding-best-practices-in-c/1710900#17109000Answer by Max Lybbert for Coding Standards / Coding Best practices in C++Max Lybbert2009-11-10T20:17:48Z2009-11-10T20:17:48Z<p>Personally I prefer my <code>for</code>, <code>while</code> and <code>do ... while</code> loops to be actual loops. In the first code example this is not the case. So I would opt for example 2. Or, as others have already said, for breaking example 2 into a number of <code>if ... return</code> statements.</p>
http://stackoverflow.com/questions/1709693/when-should-you-use-an-stl-other-than-the-one-that-comes-with-your-compiler/1709826#17098262Answer by Max Lybbert for When should you use an STL other than the one that comes with your compiler?Max Lybbert2009-11-10T17:44:16Z2009-11-10T17:44:16Z<p>Aside from the reasons already given, I could imagine using a different STL due to <a href="http://www.stlport.org/doc/debug%5Fmode.html" rel="nofollow">debugging support</a> or as a way to guarantee I was not relying on vendor extensions.</p>
<p>It would also be a first step in testing whether a library I was shipping worked well on other platforms.</p>
http://stackoverflow.com/questions/1689019/c-watch-a-memory-location-install-data-breakpoint-from-code/1689293#16892930Answer by Max Lybbert for C++: watch a memory location/install 'data breakpoint' from code? Max Lybbert2009-11-06T18:03:35Z2009-11-06T18:03:35Z<p>Debugging APIs are platform-specific, but they do exist. <a href="http://msdn.microsoft.com/en-us/library/ms679303%28VS.85%29.aspx" rel="nofollow">Windows</a> and <a href="http://linux.die.net/man/2/ptrace" rel="nofollow">UNIX</a> APIs can be found online.</p>
http://stackoverflow.com/questions/1677258/what-is-perls-standard-string-comparison-order/1677768#16777685Answer by Max Lybbert for What is Perl's "standard string comparison order"?Max Lybbert2009-11-05T01:22:51Z2009-11-05T01:22:51Z<p>I can't answer the whole question, so let me hone in on one part:</p>
<pre><code> const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
</code></pre>
<blockquote>
<p>... looks like once it has <code>pv1</code> and <code>pv2</code>, which were coerced to <code>char *</code>, now are just compared byte-by-byte because they are coerced to <code>void *</code>. Is that what happens with <code>memcmp</code></p>
</blockquote>
<p>Pretty much. The main differences differences between <code>memcmp</code> and <code>strcmp</code> are:</p>
<ol>
<li><code>strcmp</code> will stop once it sees a <code>NULL</code> (i.e., <code>'\0'</code>), and Perl allows scalars to have embedded <code>NULL</code>s</li>
<li><code>memcmp</code> often runs just a little bit faster than <code>strcmp</code></li>
</ol>
<p>But aside from that you're going to get the same results.</p>
http://stackoverflow.com/questions/1665636/how-can-i-reclaim-memory-from-perl/1669097#16690971Answer by Max Lybbert for How can I reclaim memory from perl?Max Lybbert2009-11-03T18:03:05Z2009-11-03T18:03:05Z<p>Perl "supports" returning memory to the operating system if the operating system is willing to take that memory back. I use the quotes because, IIRC, Perl does not promise when it will give that memory back.</p>
<p>Perl currently does promise when destructors will run, when objects will be deallocated (and, especially, in what order that will happen). But deallocated memory goes to a pool for Perl to use later and that memory -- eventually -- is released to the operating system if the operating system supports it.</p>
http://stackoverflow.com/questions/1666073/how-port-waitformultipleobjects-to-java/1666112#16661120Answer by Max Lybbert for How port WaitForMultipleObjects to Java?Max Lybbert2009-11-03T09:05:01Z2009-11-03T09:05:01Z<p><code>WaitForMultipleObjects</code> is a Windows API function. Personally I would implement this via simple events (instead of calling <code>ResetEvent</code> have your threads fire off some kind of event, and have one worker thread registered to listen for those events).</p>
http://stackoverflow.com/questions/1665472/linq-to-sql-security-exception/1665587#16655871Answer by Max Lybbert for Linq to SQL - Security ExceptionMax Lybbert2009-11-03T06:29:44Z2009-11-03T06:29:44Z<p>The important part of the error message to me is:</p>
<blockquote>
<p>The application attempted to perform an operation not allowed by the security policy. ...</p>
<p>Request for the permission of type '<a href="http://msdn.microsoft.com/en-us/library/system.security.permissions.reflectionpermission.aspx" rel="nofollow">System.Security.Permissions.ReflectionPermission</a>, ...</p>
</blockquote>
<p>So the security problem isn't caused (directly) by authenticating against the database. Instead, some code needs to use Reflection to run correctly, and the system's security policy doesn't allow that.</p>
<blockquote>
<p>To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file.</p>
</blockquote>
http://stackoverflow.com/questions/1648127/c-boostthread-and-automatically-locking-containers/1648169#16481694Answer by Max Lybbert for C++ boost::thread and automatically locking containersMax Lybbert2009-10-30T05:32:37Z2009-10-30T05:32:37Z<p>The currrent C++ standard does not say anything about thread safety for STL containers. Officially it is possible for an STL implementation to be thread safe, but it's very unusual. If your STL implementation is not thread safe, then you will need to "lock and release around it" or find some other way to coordinate access.</p>
<p>You may be interested in Intel's <a href="http://threadingbuildingblocks.org/" rel="nofollow">Threading Building Blocks</a> which includes some thread safe containers similar to STL containers.</p>
http://stackoverflow.com/questions/1623010/cleaner-pointer-arithmetic-syntax-for-manipulation-with-byte-offsets/1623392#16233920Answer by Max Lybbert for Cleaner pointer arithmetic syntax for manipulation with byte offsetsMax Lybbert2009-10-26T06:43:25Z2009-10-26T06:43:25Z<p>Both C and C++ allow you to iterate through an array via pointers and <code>++</code>:</p>
<pre><code>#include <iostream>
int[] arry = { 0, 1, 2, 3 };
int* ptr = arry;
while (*ptr != 3) {
std::cout << *ptr << '\n';
++ptr;
}
</code></pre>
<p>For this to work, adding to pointers is defined to take the memory address stored in the pointer and then add the sizeof whatever the type is times the value being added. For instance, in our example <code>++ptr</code> adds <code>1 * sizeof(int)</code> to the memory address stored in <code>ptr</code>.</p>
<p>If you have a pointer to a type, and want to advance a particular number of bytes from that spot, the only way to do so is to cast to <code>char*</code> (because <code>sizeof(char)</code> is defined to be one).</p>
http://stackoverflow.com/questions/1614988/vector-initializing-slower-than-array-why/1615581#16155811Answer by Max Lybbert for Vector initializing slower than array...why?Max Lybbert2009-10-23T19:57:59Z2009-10-23T19:57:59Z<p>In your examples, the array is on the stack. Accessing data in the array involves accessing data on the stack. That's fast.</p>
<p>On the other hand, while the <code>vector</code> is on the stack, the data for a <code>std::vector</code> is allocated somewhere else (by default it's allocated on the heap via <code>std::allocator</code>). Accessing data in the <code>vector</code> involves accessing data on the heap. That's much slower than accessing data on the stack.</p>
<p>You get something for the performance penalty, though. <code>std::vector</code> is growable, while a regular array is not. Also, the size of a <code>std::vector</code> does not have to be compile time constant, while the size of an array on the stack does. A heap-allocated array (via <code>operator new[]</code>) does not have to be a compile-time constant. If you compare a heap allocated array with a <code>std::vector</code> you'll find the performance is much closer.</p>
<pre><code>int* arr = new int[10000];
for (int i = 0; i < 10000; i++)
{
for (int j = 0; j < 10000; j++)
{
arr[j] = j;
}
}
delete[] arr; // std::vector does this for you
</code></pre>
http://stackoverflow.com/questions/1615173/what-does-a-c-compiler-do-to-create-an-object/1615511#16155110Answer by Max Lybbert for What does a C++ compiler do to create an object?Max Lybbert2009-10-23T19:44:22Z2009-10-23T19:44:22Z<p>Just to add to previous answers, once the object is constructed, the compiler will do whatever magic is necessary under it's conventions to guarantee the destructor is called when the object goes out of scope. The language guarantees this, but most compilers have to do something to follow through on the guarantee (like set up a table of pointers to destructors and rules about when to invoke the various destructors for the various objects).</p>
http://stackoverflow.com/questions/1602364/how-to-read-the-string-into-a-file-c/1603107#16031071Answer by Max Lybbert for How to read the string into a file C++Max Lybbert2009-10-21T19:36:25Z2009-10-23T19:37:11Z<p>You're working at the wrong level of abstraction. Also, there is no need to <code>seekp</code> to the end of the file before closing the file.</p>
<p>You want to read a string and write a string. As Pavel Minaev has said, this is directly supported via <code>std::string</code> and <code>std::fstream</code>:</p>
<pre><code>#include <iostream>
#include <fstream>
#include <string>
int main()
{
std::ofstream out("G:\\Test.txt");
if(!out) {
std::cout << "Cannot open output file.\n";
return 1;
}
std::cout << "Enter Customer's data seperated by tab\n";
std::string buffer;
std::getline(std::cin, buffer);
out << buffer;
return 0;
}
</code></pre>
<p>If you want to write C, use C. Otherwise, take advantage of the language you're using.</p>
http://stackoverflow.com/questions/1579086/why-does-ofstream-sometimes-create-files-but-cant-write-to-them/1579234#15792340Answer by Max Lybbert for Why does ofstream sometimes create files but can't write to them?Max Lybbert2009-10-16T17:02:58Z2009-10-22T05:59:21Z<p><strong>UPDATE</strong> Thinking more about this, failing to open a file via <code>fstreams</code> is not guaranteed to set <code>errno</code>. It's possible that <code>errno</code> ends up set on some platforms (espeically if those platforms implement <code>fstream</code> operations with <code>FILE*</code> or file descriptors, or some other library that sets <code>errno</code>) but that is not guaranteed. The official way to check for failure is via <a href="http://www.cplusplus.com/reference/iostream/ios/exceptions/" rel="nofollow">exceptions</a>, <a href="http://www.cplusplus.com/reference/iostream/ios%5Fbase/iostate/" rel="nofollow"><code>std::io_state</code></a> or helper methods on <code>std::fstream</code> (like <a href="http://www.cplusplus.com/reference/iostream/ios/fail/" rel="nofollow"><code>fail</code></a> or <a href="http://www.cplusplus.com/reference/iostream/ios/bad/" rel="nofollow"><code>bad</code></a>). Unfortunately you can't get as much information out of <code>std::streams</code> as you can from <code>errno</code>.</p>
<p>You've got the if statement wrong. <a href="http://www.cplusplus.com/reference/iostream/ios/operator%5Fvoidpt/" rel="nofollow"><code>operator void*</code></a> returns <code>NULL</code> (a.k.a. <code>false</code>) if the file is not writable. It returns non-zero (a.k.a. <code>true</code>) if the file is writeable. So you want:</p>
<pre><code>if (!file) {
cout << strerror(errno) << endl;
} else {
cout << "All is well!" << endl;
}
</code></pre>
<p>Or:</p>
<pre><code>if (!file.good()) {
cout << strerror(errno) << endl;
} else {
cout << "All is well!" << endl;
}
</code></pre>
http://stackoverflow.com/questions/1602451/c-valarray-vs-vector/1603055#16030551Answer by Max Lybbert for C++ valarray vs. vectorMax Lybbert2009-10-21T19:27:59Z2009-10-21T19:27:59Z<blockquote>
<p>I know valarrays have some syntactic sugar</p>
</blockquote>
<p>I have to say that I don't think <code>std::valarrays</code> have much in way of syntactic sugar. The syntax is different, but I wouldn't call the difference "sugar." The <code>std::valarray</code> API is weird, and the section on it in <em>The C++ Programming Language</em> mentions this and the fact that any error messages you get while using <code>std::valarray</code>s will probably be non-intuitive because they are supposed to be highly optimized.</p>
<p>Out of curiosity, about a year ago I pitted <code>std::valarray</code> against <code>std::vector</code> in calculating standard deviations. I no longer have the code or the precise results (although it shouldn't be hard to write your own), but using GCC I <em>did</em> get a little performance benefit when using <code>std::valarray</code> for simple math using, but not for something as complex as standard deviation (and, of course, standard deviation isn't that complex, as far as math goes). In the end, I decided to pay close attention to temporary object creation and to use <code>std::vector</code> because it seems to play better with caches.</p>
http://stackoverflow.com/questions/1578878/catching-stack-overflow-exceptions-in-recursive-c-functions/1579313#15793131Answer by Max Lybbert for Catching "Stack Overflow" exceptions in recursive C++ functionsMax Lybbert2009-10-16T17:20:24Z2009-10-16T17:26:12Z<p>There isn't a portable way. However, there are a few nonportable solutions.</p>
<p>First, as others have mentioned, Windows provides a nonstandard <code>__try</code> and <code>__except</code> framework called <a href="http://msdn.microsoft.com/en-us/library/s58ftw19%28VS.80%29.aspx" rel="nofollow">Structured Exeption Handling</a> (<a href="http://support.microsoft.com/kb/315937" rel="nofollow">your specific answer</a> is in the Knowledge Base).</p>
<p>Second, <code>alloca</code> -- if implemented correctly -- can tell you if the stack is about to overflow:</p>
<pre><code>bool probe_stack(size_t needed_stack_frame_size)
{
return NULL != alloca(needed_stack_frame_size);
};
</code></pre>
<p>I like this approach, because at the end of <code>probe_stack</code>, the memory <code>alloca</code> allocated is released and available for your use. Unfortunately only a few operating systems implement <code>alloca</code> correctly. <code>alloca</code> never returns <code>NULL</code> on most operating systems, letting you discover that the stack has overflowed the old fashioned way: with a spectacular crash.</p>
<p>Third, UNIX-like systems often have a header called <code>ucontext.h</code> with functions to set the size of the stack (or, actually, to chain several stacks together). You can keep track of where you are on the stack, and determine if you're about to overflow. Windows comes with similar abilities <em>a la</em> <code>CreateFiber</code>.</p>
http://stackoverflow.com/questions/1578714/one-class-with-multiple-implementation-files/1579250#15792501Answer by Max Lybbert for One class with multiple implementation filesMax Lybbert2009-10-16T17:06:51Z2009-10-16T17:06:51Z<p>I've been working with the Apache Portable Runtime, which does pretty much this exact thing. You have a header, say <code>apr_client.h</code> and multiple implementation files for the functions in that header -- each file representing one aspect of client operations. It's not wrong, and it's not really unusual.</p>
<blockquote>
<p>this could be a symptom of too much code in a single class</p>
</blockquote>
<p>C++ is not Java, so you don't have to pick your file names according to your class names.</p>
http://stackoverflow.com/questions/1573806/when-are-member-data-constructors-called/1573894#15738940Answer by Max Lybbert for When are member data constructors called?Max Lybbert2009-10-15T17:29:22Z2009-10-16T16:44:01Z<p>Given a class <code>A</code>:</p>
<pre><code>class A {
MyDataObj obj;
}
</code></pre>
<p>If you don't write the constructor for <code>A</code>, the compiler will create one for you, which will create <code>obj</code> as part of constructing <code>A</code> (and destroy <code>obj</code> as part of destroying <code>A</code>.</p>
<p>If you do write a constructor for <code>A</code>, then <code>obj</code> will be created before your constructor runs, although you can reassign it:</p>
<pre><code>class A {
MyDataObj obj;
public:
A() { } // obj created, but the value may or may not be predictable
}
class AA {
MyDataObj obj;
public:
AA()
{
obj = MyDataObj(5);
}
}
class AAA {
MyDataObj obj;
public:
AAA() : obj(5) { } // member initializer list, my preferred method
}
</code></pre>
<p>With the third option, the data objects are created before the member initializer list runs, and the values are assigned in the order they are declared in <code>AAA</code>, <strong>NOT</strong> the order they are listed in the member initializer list.</p>
<p><strong>UPDATE</strong>: There is a difference between creation and initialization. Space for the data members (and the base classes, and the data members for the base classes) is always set aside -- which I would call "creation." However, that doesn't mean a useful value is stored in that memory. <a href="http://www.boost.org/doc/libs/1%5F40%5F0/libs/utility/value%5Finit.htm" rel="nofollow">There are separate rules for whether an object is default initialized</a>, which depend on the type of the data member (primitive, POD, non-POD) and, IIRC, the storage class of the main object (local, static, global). The easiest way to avoid surprises in this area is to simply make sure you explicitly initialize everything.</p>
http://stackoverflow.com/questions/1570737/why-access-violation-for-cout-and-stack-overflow-for-printf/1570830#15708300Answer by Max Lybbert for Why Access Violation for cout And Stack Overflow for printfMax Lybbert2009-10-15T07:36:44Z2009-10-15T07:36:44Z<p>As for the access violation: if you don't get any successful output, you may simply have a link error. Sometimes the compiler determines there will be a link error and gives you a relevant error message. Sometimes, however, the compiler doesn't figure this out, and you get a runtime error when you actually try to use a method/object in the library.</p>
<p>I had this problem today when linking in pre-built libraries for a project I work on (in Visual Studio). Newer versions of GCC will say things like </p>
<blockquote>
<p><code>Info: resolving std::cout by linking to __imp___ZSt4cout (auto-import) ...
This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.</code></p>
</blockquote>
<p>If that autoimport feature screwed up somehow you would also get an access violation.</p>
http://stackoverflow.com/questions/1539333/using-a-class-in-a-namespace-with-the-same-name/1539486#15394861Answer by Max Lybbert for Using a class in a namespace with the same name?Max Lybbert2009-10-08T17:59:28Z2009-10-09T06:48:39Z<p>There are three ways to use <code>using</code>. One is for an entire namespace, one is for particular things in a namespace, and one is for a derived class saying it doesn't want to hide something declared/defined in a base class. You can use the second of those:</p>
<pre><code>using ALongNameToType::ALongNameToType
</code></pre>
<p><hr /></p>
<p>Unfortunately this isn't working for you (due to the ambiguity of the namespace and the class having the same name). Combining this type of using with a previous answer should get rid of the ambiguity:</p>
<pre><code>namespace alntt = ALongNameToType;
using alntt::ALongNameToType;
</code></pre>
<p>But once you've renamed the namespace, you really don't need the <code>using</code> statement (as long as you're comfortable writing the (shortened) namespace every time you use the class:</p>
<pre><code>namespace alntt = ALongNameToType;
alntt::ALongNameToType a;
...
</code></pre>
http://stackoverflow.com/questions/1517703/c-copy-constructor-causing-code-not-to-compile-gcc/1518656#15186561Answer by Max Lybbert for C++ copy constructor causing code not to compile ( gcc )Max Lybbert2009-10-05T07:22:12Z2009-10-05T23:27:44Z<p>The line <code>B b1 = b0;</code> is the culprit. This line requires calling a copy constructor. You could fix the code by writing <code>B b1(b0)</code> instead, or by defining a copy constructor, which takes a <code>const B&</code>, but not a <code>B&</code>.</p>
http://stackoverflow.com/questions/1521194/double-type-digits-in-c/1521697#15216970Answer by Max Lybbert for double type digits in C++Max Lybbert2009-10-05T18:35:48Z2009-10-05T18:35:48Z<p>Generally speaking, people only care about something like this ("I only want the first <em>x</em> digits") when displaying the number. That's relatively easy with <code>stringstream</code>s or <code>sprintf</code>.</p>
<p>If you're concerned about comparing numbers with <code>==</code>; you really can't do that with floating point numbers. Instead you want to see if the numbers are close enough (say, within an <a href="http://www.cplusplus.com/reference/std/limits/numeric%5Flimits/" rel="nofollow"><code>epsilon()</code></a> of each other).</p>
<p>Playing with the bits of the number directly isn't a great idea.</p>
http://stackoverflow.com/questions/1512174/is-it-possible-to-define-a-variable-in-expression-in-c/1512397#15123970Answer by Max Lybbert for Is it possible to define a variable in expression in C++?Max Lybbert2009-10-03T00:25:17Z2009-10-03T06:25:29Z<p>You clearly have to have the date passed in somehow. Beyond that, all you're really going to be doing is chaining <code>&&</code> and <code>||</code> (assuming we get the date as a <a href="http://www.cplusplus.com/reference/clibrary/ctime/tm/" rel="nofollow"><code>tm</code></a> struct):</p>
<pre><code>#include <ctime>
bool validate(tm date)
{
return (
// sanity check that all values are positive
date.tm_mday >= 1 && date.tm_mon >= 0 && date.tm_year >= 0
// check for valid days
&& ((date.tm_mon == 0 && date.tm_mday <= 31)
|| (date.tm_mon == 1 && date.tm_mday <= (date.tm_year % 4 ? 28 : 29))
|| (date.tm_mon == 2 && date.tm_mday <= 31)
// yadda yadda for the other months
|| (date.tm_mon == 11 && date.tm_mday <= 31))
);
}
</code></pre>
<p>The parenthesis around <code>date.tm_year % 4 ? 28 : 29</code> actually aren't needed, but I'm including them for readability.</p>
<p><hr /></p>
<p><strong>UPDATE</strong></p>
<p>Looking at a comment, you'll also need similar rules to validate dates that don't exist in the Gregorian calendar.</p>
<p><strong>UPDATE II</strong></p>
<p>Since you're dealing with dates in the past you will need to implement a more correct leap year test. However, I generally deal with dates in the future, and this incorrect leap year test will give correct results in 2012, 2016, 2020, 2024, 2028, 2032, 2036, 2040, 2044, 2048, 2052, 2056, 2060, 2064, 2068, 2072, 2076, 2080, 2084, 2088, 2092, and 2096. I will make a prediction that before this test fails in 2100 silicon-based computers will be forgotten relics. I seriously doubt we will use C++ on the quantum computers in use then. Besides, I won't be the programmer assigned to fix the bug.</p>
http://stackoverflow.com/questions/1511101/what-is-easiest-way-to-create-multithreaded-applications-with-c-c/1511991#15119911Answer by Max Lybbert for What is easiest way to create multithreaded applications with C/C++?Max Lybbert2009-10-02T21:59:24Z2009-10-03T06:04:36Z<p>This depends entirely on what you're doing. If you can fit what you're doing into OpenMP then that is the way to go. Otherwise you may want to look at <a href="http://www.threadingbuildingblocks.org/" rel="nofollow">Intel's TBB</a>. TBB offers several workflows which you should be able to fit into, but the library is dual licensed and you may not be able to accept either license. If both OpenMP and TBB are out, then you should consider your operating system's thread pools abilities.</p>
<p>At some point you may need to bite the bullet and use Boost.Thread. If so, you'll want to look at <a href="http://www.justsoftwaresolutions.co.uk/files/designing%5Fmt%5Fprograms.pdf" rel="nofollow">what makes multithreading in C++ hard</a> (good to read even if you're not using C++0x: "It's not the threads themselves, it's the communication that causes problems. Mutable shared state introduces implicit communication," page 3).</p>
http://stackoverflow.com/questions/247538/which-standard-c-classes-cannot-be-reimplemented-in-c/248891#248891Comment by Max Lybbert on Which standard c++ classes cannot be reimplemented in c++?Max Lybbert2009-12-06T08:15:24Z2009-12-06T08:15:24ZThanks, edited.http://stackoverflow.com/questions/1665472/linq-to-sql-security-exception/1665587#1665587Comment by Max Lybbert on Linq to SQL - Security ExceptionMax Lybbert2009-12-02T09:57:49Z2009-12-02T09:57:49ZThere are only two ways to fix this: either change the method to not use reflection or grant your process the security clearance necessary to use reflection. The link I provided in the original answer has enough links to other resources detailing how to get the needed security clearance that I'll leave that to you to follow.http://stackoverflow.com/questions/1788659/seemingly-basic-c-question/1788988#1788988Comment by Max Lybbert on Seemingly basic C++ questionMax Lybbert2009-11-25T00:57:52Z2009-11-25T00:57:52ZEdited, based on final answer by shawnjanhttp://stackoverflow.com/questions/1729326/templated-class-cant-redefine-operator/1729547#1729547Comment by Max Lybbert on templated class can't redefine operator[]Max Lybbert2009-11-13T18:28:41Z2009-11-13T18:28:41ZAlthough templates were designed with the intention of being able to put the declaration in the header and the implementation in a .cpp file, in practice that isn't implemented (except by Comeau). Cfront actually had this ability but it's not common anymore ( <a href="http://gcc.gnu.org/onlinedocs/gcc/Template-Instantiation.html" rel="nofollow">gcc.gnu.org/onlinedocs/gcc/…</a> ). The main solution is to roll the declaration into the definition and put it in the header.http://stackoverflow.com/questions/1729430/cross-compiler-exception-handling-can-it-be-done-safely/1729504#1729504Comment by Max Lybbert on Cross compiler exception handling - Can it be done safely?Max Lybbert2009-11-13T18:24:41Z2009-11-13T18:24:41ZGCC used to intentionally generate code that would not link to other compilers specifically because of issues like this. With the de facto standardized ABI an most non-Windows platforms, they've stopped doing that, though.http://stackoverflow.com/questions/1709693/when-should-you-use-an-stl-other-than-the-one-that-comes-with-your-compiler/1709826#1709826Comment by Max Lybbert on When should you use an STL other than the one that comes with your compiler?Max Lybbert2009-11-12T00:48:37Z2009-11-12T00:48:37ZYes, necessary but not sufficient.http://stackoverflow.com/questions/1658918/here-is-my-code-what-is-wrong-with-itComment by Max Lybbert on here is my code what is wrong with itMax Lybbert2009-11-02T00:41:07Z2009-11-02T00:41:07ZThere are a few possible problems with this code. For one, the case parts of the switch statement all start with a { but none end with a }. That will prevent the code from compiling. "void main" is not Standard (the Standard is "int main"). Aside from that, there's the chance that the code doesn't do what you want. If you narrow down your question, it will be easier to give you a helpful answer.http://stackoverflow.com/questions/1610030/why-can-you-return-from-a-non-void-function-without-returning-a-value-without-pro/1610111#1610111Comment by Max Lybbert on Why can you return from a non-void function without returning a value without producing a compiler error?Max Lybbert2009-10-23T20:07:21Z2009-10-23T20:07:21Z@Paul: it means they didn't have a goodeditor. All other languages say "never returns normally" -- i.e., "doesn't return using the normal return mechanism."http://stackoverflow.com/questions/1602364/how-to-read-the-string-into-a-file-c/1603107#1603107Comment by Max Lybbert on How to read the string into a file C++Max Lybbert2009-10-23T19:37:37Z2009-10-23T19:37:37ZThanks. Edited. I used fstream out of habit.http://stackoverflow.com/questions/1578878/catching-stack-overflow-exceptions-in-recursive-c-functions/1579313#1579313Comment by Max Lybbert on Catching "Stack Overflow" exceptions in recursive C++ functionsMax Lybbert2009-10-22T05:47:01Z2009-10-22T05:47:01ZI really don't know what happens, although I doubt destructors are run. There is a __finally construct that you can use, a la Java.http://stackoverflow.com/questions/1573806/when-are-member-data-constructors-called/1573894#1573894Comment by Max Lybbert on When are member data constructors called?Max Lybbert2009-10-16T16:47:04Z2009-10-16T16:47:04Z@Andrey: Thanks, I had missed that comment when I edited the question for an earlier correction. @Pavel: Thanks for the clarification; I knew default initialization happened in some cases, but I couldn't remember when it didn't happen.http://stackoverflow.com/questions/1539333/using-a-class-in-a-namespace-with-the-same-name/1539486#1539486Comment by Max Lybbert on Using a class in a namespace with the same name?Max Lybbert2009-10-09T06:42:02Z2009-10-09T06:42:02ZOh well, it's useful in cases where there isn't ambiguity (eg., "using std::cout").http://stackoverflow.com/questions/1524989/separating-compilation-for-to-avoid-recompilation-when-i-add-some-debugging-to-h/1525260#1525260Comment by Max Lybbert on separating compilation for to avoid recompilation when I add some debugging to .h fileMax Lybbert2009-10-06T19:06:37Z2009-10-06T19:06:37Z"my application is time sensitive and call_some_function_dummy function will add unnecessary overhead": more overhead than the debugging stuff?http://stackoverflow.com/questions/1517703/c-copy-constructor-causing-code-not-to-compile-gcc/1518656#1518656Comment by Max Lybbert on C++ copy constructor causing code not to compile ( gcc )Max Lybbert2009-10-05T23:27:35Z2009-10-05T23:27:35ZThanks again. I've corrected things.http://stackoverflow.com/questions/1521194/double-type-digits-in-cComment by Max Lybbert on double type digits in C++Max Lybbert2009-10-05T18:30:19Z2009-10-05T18:30:19ZThe reference to internal representation is just that the computer thinks in binary binary, not decimal; and all registers are binary, not decimal.