User Tyler McHenry - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T15:53:38Z http://stackoverflow.com/feeds/user/39375 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/645168/how-to-write-a-stdbitset-template-that-works-on-32-and-64-bit 2 How to write a std::bitset template that works on 32 and 64-bit Tyler McHenry 2009-03-14T01:49:00Z 2009-11-08T12:56:45Z <p>Consider the following code</p> <pre><code>template&lt;unsigned int N&gt; void foo(std::bitset&lt;N&gt; bs) { /* whatever */ } int main() { bitset&lt;8&gt; bar; foo(bar); return 0; } </code></pre> <p>g++ complains about this on 64 bit because the &lt;8> gets interpreted as an unsigned long int, which doesn't exactly match the template. If I change the template to say unsigned long int, then 32-bit compiles complain. </p> <p>Obviously one way to fix this is to change bitset&lt;8> to bitset&lt;8ul>, but is there any way to re-write the <em>template</em> part so that it will work with whatever the default interpretation of a numeric literal is?</p> http://stackoverflow.com/questions/1395715/should-const-functionality-be-expanded/1396055#1396055 0 Answer by Tyler McHenry for Should const functionality be expanded? Tyler McHenry 2009-09-08T20:06:50Z 2009-09-08T20:06:50Z <p>I don't think the core language, and especially the <code>const</code> keyword, would be the right place for this. The concept of <code>const</code> in C++ is meant to express the idea that a particular action will not modify a certain area of memory. It is a very low-level idea. </p> <p>What you are proposing is a logical const-ness that has to do with the high-level semantics of your program. The main problem, as I see it, is that semantics can vary so much between different classes and different programs that there would be no way for there to be a one-size-fits all language construct for this. </p> <p>What would need to happen is that the programmer would need to be able to write validation code that the compiler would run in order to check that particular operations met his definition of semantic (or "logical") const-ness. When you think about it, though, such code, if it ran at compile-time, would not be very different from a unit test. </p> <p>Really what you want is for the compiler to test whether functions adhere to a particular semantic contract. That's what unit tests are for. So what you're asking is that there be a language feature that automatically runs unit tests for you during the compilation step. I think that's not terribly useful, given how complicated the system would need to be.</p> http://stackoverflow.com/questions/1364444/can-someone-please-explain-the-difference-between-big-o-and-little-o-notation/1364491#1364491 18 Answer by Tyler McHenry for Can someone please explain the difference between Big-O and Little-O Notation? Tyler McHenry 2009-09-01T20:32:32Z 2009-09-08T19:56:56Z <p>f = O(g) says, essentially</p> <blockquote> <p>For <strong>at least one</strong> choice of a constant <em>k</em> > 0, you can find a constant <em>a</em> such that the inequality f(x) &lt; k g(x) holds for all x > a.</p> </blockquote> <p>f = o(g) says, essentially</p> <blockquote> <p>For <strong>every</strong> choice of a constant <em>k</em> > 0, you can find a constant <em>a</em> such that the inequality f(x) &lt; k g(x) holds for all x > a.</p> </blockquote> <p>In Big-O, it is only necessary that you find a particular multiplier <em>k</em> for which the inequality holds beyond some minimum <em>x</em>. </p> <p>In Little-o, it must be that there is a minimum <em>x</em> after which the inequality holds no matter how small you make <em>k</em>, as long as it is not negative or zero.</p> <p>These both describe upper bounds, although somewhat counter-intuitively, Little-o is the stronger statement. There is a much larger gap between the growth rates of f and g if f = o(g) than if f = O(g). </p> <p>One illustration of the disparity is this: f = O(f) is true, but f = o(f) is false. Therefore, Big-O can be read as "f = O(g) means that f's asymptotic growth is no faster than g's", whereas "f = o(g) means that f's asymptotic growth is strictly slower than g's". It's like <code>&lt;=</code> versus <code>&lt;</code>.</p> <p>More specifically, if the value of g(x) is a constant multiple of the value of f(x), then f = O(g) is true. This is why you can drop constants when working with big-O notation.</p> <p>However, for f = o(g) to be true, then g must include a higher <em>power</em> of x in its formula, and so the relative separation between f(x) and g(x) must actually get larger as x gets larger.</p> <p>To use purely math examples (rather than referring to algorithms):</p> <p>The following are true for Big-O, but would not be true if you used little-o:</p> <ul> <li>x^2 = O(x^2) </li> <li>x^2 = O(x^2 + x)</li> <li>x^2 = O(200 * x^2)</li> </ul> <p>The following are true for little-o:</p> <ul> <li>x^2 = o(x^3)</li> <li>x^2 = o(x!)</li> <li>ln(x) = o(x)</li> </ul> <p>Note that if f = o(g), this implies f = O(g). e.g. x^2 = o(x^3) so it is also true that x^2 = O(x^3), (again, think of O as <code>&lt;=</code> and o as <code>&lt;</code>)</p> http://stackoverflow.com/questions/1381383/501-sorry-but-i-wont-connect-to-ports-1024/1381400#1381400 0 Answer by Tyler McHenry for 501 Sorry, but I won't connect to ports < 1024 Tyler McHenry 2009-09-04T20:31:22Z 2009-09-04T20:31:22Z <p>This doesn't belong on SO, but it sounds like the gist of the message is that your FTP client is asking the server to connect back to it on a privileged low port. Fix your client configuration.</p> http://stackoverflow.com/questions/1380829/is-extern-c-only-required-on-the-function-declaration/1380840#1380840 -1 Answer by Tyler McHenry for Is extern "C" only required on the function declaration? Tyler McHenry 2009-09-04T18:32:30Z 2009-09-04T18:32:30Z <p>It should be around both. The compiler needs to know to use the C symbol name and calling conventions when compiling the call sites (which may only see a declaration), and the compiler also needs to know to generate the C symbol name and use the C calling conventions when compiling the function definition itself (which may not see any other declarations).</p> <p>Now, if you have an extern-C declaration that is visible from the translation unit in which the definition exists, you may be able to get away with leaving off the extern-C from the definition, but I don't know that for sure.</p> http://stackoverflow.com/questions/1379593/once-i-determine-a-var-exist-in-php-do-i-need-to-keep-checking-it-in-that-page/1379624#1379624 3 Answer by Tyler McHenry for Once I determine a var exist in PHP do I need to keep checking it in that page? Tyler McHenry 2009-09-04T14:29:41Z 2009-09-04T14:29:41Z <p>Sure. Just save the value of the boolean expression in another variable.</p> <pre><code>&lt;?php $auto_id_is_one = ($_SESSION['auto_id']) &amp;&amp; $_SESSION['auto_id'] == "1"); // ... if ($auto_id_is_one) { // do something } // ... if ($auto_id_is_one) { // do something else } // ... ?&gt; </code></pre> <p>You probably want to give it a more meaningful name than <code>$auto_id_is_one</code>, though.</p> http://stackoverflow.com/questions/1376792/c-template-syntax-error/1376797#1376797 3 Answer by Tyler McHenry for c++ template syntax error Tyler McHenry 2009-09-04T01:27:57Z 2009-09-04T01:27:57Z <p>This</p> <pre><code>std::list&lt; Subscriber&lt;T&gt;* &gt;::iterator </code></pre> <p>needs to be this</p> <pre><code>typename std::list&lt; Subscriber&lt;T&gt;* &gt;::iterator </code></pre> <p>The compiler assumes nested names in templates are static variables (not types) until told otherwise.</p> http://stackoverflow.com/questions/1374744/array-index-limit-in-c/1374793#1374793 5 Answer by Tyler McHenry for Array index limit in C Tyler McHenry 2009-09-03T17:18:54Z 2009-09-03T17:18:54Z <p>Your calculation overflows the range of a 32-bit signed integer, which is what "long" may be. You should use size_t instead of long. This is guaranteed to be able to hold the size of the largest memory block that your system can allocate.</p> http://stackoverflow.com/questions/1373423/add-all-natural-numbers-that-are-multiples-of-3-and-5-what-is-the-bug-in-the-fo/1373442#1373442 4 Answer by Tyler McHenry for Add all natural numbers that are multiples of 3 and 5 : What is the bug in the following code. Tyler McHenry 2009-09-03T13:34:26Z 2009-09-03T13:34:26Z <p>The statement <code>j &lt; 995</code> should probably be <code>j &lt;= 995</code>, otherwise you are not going to add 995 to your sum.</p> http://stackoverflow.com/questions/1372811/how-are-array-and-pointer-types-handled-internally-in-c-compilers-int-a-vs/1373135#1373135 0 Answer by Tyler McHenry for How are array and pointer types handled internally in C compilers? ( int *a; vs. int a[]; ) Tyler McHenry 2009-09-03T12:34:19Z 2009-09-03T12:34:19Z <p>I'll throw my hat into the ring for a simple explanation of this:</p> <ul> <li><p>An array is a series of contiguous storage locations for the same type</p></li> <li><p>A pointer is the address of a single storage location</p></li> <li><p>Taking the address of an array gives the address of (i.e a pointer to) its first element.</p></li> <li><p>Elements of an array can be accessed through a pointer to the array's first element. This works because the subscript operator [] is defined on pointers in a way designed to facilitate this.</p></li> <li><p>An array can be passed where a pointer parameter is expected, and it will be automatically converted into a pointer-to-first-element (although this is <em>not</em> recursive for multiple levels of pointers, or multi-dimensional arrays). Again, this is by design.</p></li> </ul> <p>So, in many cases, the same piece of code can operate on arrays and contiguous blocks of memory that were not allocated as an array because of the intentionally special relationship between an array and a pointer to its first element. However <strong>they are distinct types,</strong> and they do behave differently in some circumstances, e.g. pointer-to-array is not at all the same as pointer-to-pointer.</p> <p>Here's a recent SO question that touches on the pointer-to-array versus pointer-to-pointer issue: <a href="http://stackoverflow.com/questions/1370749/whats-the-difference-between-abc-and-abc-in-c">http://stackoverflow.com/questions/1370749/whats-the-difference-between-abc-and-abc-in-c</a></p> http://stackoverflow.com/questions/1370996/minus-operation-on-two-files-using-linux-commands/1371005#1371005 0 Answer by Tyler McHenry for "Minus" operation on two files using Linux commands Tyler McHenry 2009-09-03T01:23:25Z 2009-09-03T01:28:37Z <pre><code>grep -x -v -f B A | grep -x -v -f C | grep -x -v -f D </code></pre> <p>The -v switch is an inverse match (i.e. match all except). The -f switch takes a file with a list of patterns to match. The -x switch forces it to match whole lines (so that lines that are substrings of other lines don't cause the longer lines to be removed).</p> http://stackoverflow.com/questions/1370976/c-style-prefixing-virtual-keyword-to-overridden-methods/1370985#1370985 14 Answer by Tyler McHenry for C++ Style: Prefixing virtual keyword to overridden methods Tyler McHenry 2009-09-03T01:12:56Z 2009-09-03T01:12:56Z <p>I completely agree with your rationale. It's a good reminder that the method will have dynamic dispatch semantics when called. The "that method isn't virtual" argument that you co-worker is using is completely bogus. He's mixed up the concepts of virtual and pure-virtual.</p> http://stackoverflow.com/questions/1370749/whats-the-difference-between-abc-and-abc-in-c/1370952#1370952 4 Answer by Tyler McHenry for Whats the difference between "abc" and {"abc"} in C? Tyler McHenry 2009-09-03T01:00:50Z 2009-09-03T01:06:58Z <p>This is an example of how pointers and arrays are <em>not</em> equivalent in C. In particular: <strong>the rule that arrays decay to pointers is not applied recursively</strong></p> <p>This means that <strong>an array can be used as a pointer, but a pointer-to-array cannot be used as a pointer-to-pointer</strong>. This is what you are experiencing here. This is why the compiler complains about mismatched types when you don't cast &amp;str explicitly to char**. That should be your first clue that something is wrong.</p> <p>The reason that this causes a segfault is this: The way that an array automatically decays to a pointer is by turning into the address of its first element. A pointer to an array is likewise a pointer to the address of the array's first element. So a pointer-to-array and array-as-pointer are the same thing. In other words str, when passed as a pointer, has a value identical to &amp;str. So if you try to make &amp;str into a pointer-to-pointer, it doesn't work, since is just a (single-level) pointer.</p> <p>For example, </p> <pre><code>void f(char** pp); void g(char* p); char[] str = "abcd"; // Lets say this is allocated at address 0x1234 g(str); // Value of p in g is 0x1234 (by automatic conversion of char[4] to char*) char* p_str = &amp;str; // Value of p_str is 0x1234 g(p_str); // Value of p in g is again 0x1234 f(str); // Illegal, no conversion of char[] to char** (obvious) f(p_str); // Illegal, no conversion of char* to char** (obvious) f(&amp;str); // Illegal, no conversion of char*[4] to char** (less obvious) f((char**)p_str); // Ok, now you're overriding the typecheck </code></pre> <p>But after that last call to <code>f((char**)p_str)</code>, the value of pp in f is still going to be 0x1234 because you haven't modified the value of p_str, you've only suppressed the type-checker's complaint. This means that *pp is going to be 'a', not a pointer to the address that contains 'a'. And that's why you get a segfault when f tries to execute **pp.</p> http://stackoverflow.com/questions/1370870/c-strings-in-c/1370897#1370897 5 Answer by Tyler McHenry for C-Strings in C++ Tyler McHenry 2009-09-03T00:39:06Z 2009-09-03T00:39:06Z <p>There are a number of C standard library functions that can help you.</p> <p>First, look at the C standard library function <a href="http://www.cplusplus.com/reference/clibrary/cstring/strtok/" rel="nofollow">strtok</a>. This allows you to retrieve parts of a C string separated by certain delimiters. For example, you could tokenize with the delimiter / to get the protocol, domain, and then the file path. You could tokenize the domain with delimiter . to get the subdomain(s), second level domain, and top level domain. Etc.</p> <p>It's not nearly as powerful as a regular expression parser, which is what you would really want for parsing URLs, but it works on C strings, is part of the C standard library and is probably OK to use in your assignment.</p> <p>Other C standard library functions that may help:</p> <ul> <li>strstr() Extracts substrings just like std::string::substr()</li> <li>strspn(), strchr() and strpbrk() Find a character or characters in a string, similar to std::string::find_first_of(), etc.</li> </ul> <p>Edit: A reminder that the proper way to use these functions in C++ is to include <code>&lt;cstring&gt;</code> and use them in the std:: namespace, e.g. std::strtok().</p> http://stackoverflow.com/questions/1370865/java-is-else-necessary-after-if-else-if-statements/1370873#1370873 3 Answer by Tyler McHenry for java: is else necessary after if else if statements? Tyler McHenry 2009-09-03T00:31:46Z 2009-09-03T00:31:46Z <p>It's not required. If you are getting an error when you omit it, please post the code that gives you the error.</p> http://stackoverflow.com/questions/1370840/naming-conventions-what-to-name-a-method-that-returns-a-boolean/1370863#1370863 0 Answer by Tyler McHenry for Naming Conventions: What to name a method that returns a boolean? Tyler McHenry 2009-09-03T00:29:53Z 2009-09-03T00:29:53Z <p>I would prefer isOKToRetrieve or isRetrieveOK over variants without "is" under the convention that functions and methods should be verbs.</p> http://stackoverflow.com/questions/1364837/why-doesnt-this-c-template-code-compile/1364878#1364878 9 Answer by Tyler McHenry for Why doesn't this C++ template code compile? Tyler McHenry 2009-09-01T22:02:56Z 2009-09-01T22:02:56Z <p>At the time that the templated class Base is instantiated as a parent of the class Derived, the class Derived is not a complete type. </p> <p>Since <code>Base&lt;Derived&lt;DataClass&gt; &gt;</code> is a parent class of <code>Derived&lt;DataClass&gt;</code>, it must be instantiated before <code>Derived&lt;DataClass&gt;</code> can be instantiated. So when the class <code>Base&lt;Derived&lt;DataClass&gt; &gt;</code> is built from the template, <code>Derived&lt;DataClass&gt;</code> behaves as if it were a forward declaration. And as you're probably aware, you can't reference members of incomplete types, nor can your forward-declare nested types, so you're out of luck here.</p> <p>This, by the way, is why it's difficult to implement a properly covariant clone() method using templates. See <a href="http://www.cpptalk.net/query-on-covariant-return-types-vt12758.html" rel="nofollow">here</a> and <a href="http://nerdland.net/2009/06/covariant-templatized-virtual-copy-constructors/" rel="nofollow">here</a> (mine).</p> http://stackoverflow.com/questions/1363990/help-with-semi-complex-c-assignment/1364009#1364009 1 Answer by Tyler McHenry for Help with semi-complex C++ assignment Tyler McHenry 2009-09-01T18:47:24Z 2009-09-01T18:47:24Z <p>You're probably dereferencing a NULL or wild pointer at some point in that monstrosity. That kind of thing won't throw an exception, it will just cause a segmentation fault (or your platform's equivalent thereof).</p> http://stackoverflow.com/questions/1358232/why-use-macros-in-c/1358279#1358279 11 Answer by Tyler McHenry for Why use Macros in C? Tyler McHenry 2009-08-31T16:47:10Z 2009-08-31T17:01:24Z <p>It's not exactly search and replace, it's token expansion. C macros are what every other kind of macro is in the computing world: a way to write something short and simple and have it automatically turn into something longer and more complicated. </p> <p>One reason macros are used is performance. They are a way of eliminating function call overhead because they are always expanded in-line, unlike the "inline" keyword which is an often-ignored <em>hint</em> to the compiler, and didn't even exist (in the standard) prior to C99. For example, see the FD_ family of macros used in conjunction with the fd_sets used by select and pselect. These fd_sets are really just bitsets, and the FD_ macros are hiding bit twiddling operations. It would be annoying to write out the bit twiddling yourself every time, and a function call would be a lot of overhead for such a fast operation if it were not inlined.</p> <p>Also, macros can do some things that functions cannot. Consider token pasting. Since the preprocessor runs before the compiler, it can make new identifiers for the compiler to use. This can give you a shorthand way to create lots of similar definitions, e.g.</p> <pre><code>#define DEF_PAIR_OF(dtype) \ typedef struct pair_of_##dtype { \ dtype first; \ dtype second; \ } pair_of_##dtype##_t DEF_PAIR_OF(int); DEF_PAIR_OF(double); DEF_PAIR_OF(MyStruct); /* etc */ </code></pre> <p>Another thing it can do that a function could not is turn compile-time information into runtime information:</p> <pre><code>#ifdef DEBUG #define REPORT_PTR_VALUE(v) printf("Pointer %s points to %p\n", #v, v) #else #define REPORT_PTR_VALUE(v) #endif void someFunction(const int* reallyCoolPointer) { REPORT_PTR_VALUE(reallyCoolPointer); /* Other code */ } </code></pre> <p>There's no way that a function could use the name of its parameter in its output like the macro can. This also demonstrates compiling out debug code for release builds.</p> http://stackoverflow.com/questions/1355342/c-creating-and-collecting-structs-in-a-loop/1355382#1355382 5 Answer by Tyler McHenry for C++ creating and collecting structs in a loop Tyler McHenry 2009-08-31T00:57:37Z 2009-08-31T01:40:52Z <p>Your C++ looks to be on the right track, aside from two things. One, you have to define the form of a CollectedData struct somewhere, and two you have to give a name to your struct variable:</p> <p>For example, if you define the CollectedData struct like so</p> <pre><code>struct CollectedData { int field1; std::string field2; bool field3; // etc }; </code></pre> <p>Then in your inner loop you can do this</p> <pre><code>while( getline(myFile, line) ) { CollectedData lineData; //add property values lineData.field1 = /*whatever*/; lineData.field2 = /*whatever*/; lineData.field3 = /*whatever*/; //add struct to struct list AllData.push_back(lineData); } </code></pre> <p>Each time through the loop a new CollectedData object is created, and its fields are filled in, then a <em>copy</em> of it is pushed into the AllData list, and then finally the object is automatically destroyed (remember a copy still exists in the list).</p> <p><strong>Detail About When Objects Are Destroyed</strong></p> <p>C++ has three sorts of storage: static, automatic, and dynamic. </p> <p>Static-storage objects exist for the whole lifetime of the program. Any object created outside of a class or function is static (i.e. globals are static). Same goes for anything declared inside of a class or function with the 'static' keyword.</p> <p>Dynamic-storage objects are objects created with keyword 'new' (or with malloc(), but that is a C-ism that should generally be avoided in C++ unless really necessary). Dynamic-storage objects are objects whose lifetime is managed manually by the programmer. A dynamically-stored object will continue to exist until you destroy it with keyword "delete". Note that the <em>only</em> way you can access a dynamically-stored object is through a pointer or a reference. If you're not using a pointer or reference, it isn't dynamic (but a pointer/reference can also refer to a non-dynamic object).</p> <p>Automatic-storage objects are your regular variables: members variables of structs and classes, and local variables (including parameters) in methods and functions. </p> <p>Automatic-storage objects defined inside functions are created when the line of code that defines them is run. They are automatically destroyed when they "go out of scope", that is, when the block that they are declared inside of terminates. In general, a "block" is a set of braces: {}. So, anything created inside of a function is destroyed when the function returns, and likewise anything created inside of a while-loop's body is automatically destroyed when the loop reaches its end (regardless of whether it terminates or iterates again).</p> <p>Automatic-storage objects defined as members of classes or structs are created when the object that contains them as members is created, and destroyed when the object that contains them as members is destroyed. </p> <p>(I used the term "object" repeatedly above, but the same rules apply to fundamental types like int, char, bool, etc)</p> http://stackoverflow.com/questions/1353973/c-template-linking-error/1353981#1353981 6 Answer by Tyler McHenry for C++ template, linking error Tyler McHenry 2009-08-30T14:20:22Z 2009-08-30T14:20:22Z <p>Templates functions, including member functions, must be written entirely in headers. This means that if you have a template class, its implementation must be entirely in a header. This is because the compiler needs to have access to the entire template definition (not just the signature) in order to generate code for each instantiation of the template.</p> http://stackoverflow.com/questions/1353569/whats-what-awk-cant-that-sed-can/1353592#1353592 4 Answer by Tyler McHenry for What's what awk can't that sed can? Tyler McHenry 2009-08-30T10:34:28Z 2009-08-30T10:34:28Z <p>One main difference is that an awk program can maintain state and can operate using multiple passes over the same data. A sed invocation is necessarily stateless single-pass because sed (Stream EDitor) is inherently stream-oriented. The advantage, though, is that this makes sed simpler and more appropriate for using in pipe chains.</p> http://stackoverflow.com/questions/1349314/seg-faults-due-to-multithreading-using-boost-libraries/1352271#1352271 2 Answer by Tyler McHenry for seg faults due to multithreading (using boost libraries) Tyler McHenry 2009-08-29T20:13:53Z 2009-08-29T20:13:53Z <p>Segfaults can appear to arise from other, well-debugged libraries (or even from the standard library!) if you corrupt the heap or the free store, for example by double-freeing (or double-deleting) a pointer, accessing a pointer that was already freed (or deleted), freeing (or deleting) a pointer that was not allocated, using delete where you should have used delete[] or vice-versa, etc. </p> <p>This crash will often happen in a completely different place and at a totally different time from when and where the error occurred. If you have variables other than the matrices shared among multiple threads, and you have a race condition that, for example, causes you to double-delete the shared variable, this could corrupt the free store and later cause a crash inside of the boost matrix code.</p> <p>You should run your code through a tool like valgrind to try to track down the heap/free store corruption.</p> http://stackoverflow.com/questions/1352054/gcc-array-of-struct-compiler-weirdness/1352079#1352079 0 Answer by Tyler McHenry for GCC array of struct compiler weirdness Tyler McHenry 2009-08-29T18:36:51Z 2009-08-29T18:36:51Z <p>You can do it like this, but it's messy as hell:</p> <pre><code>struct wOCR_matchGrid { char character; int data[12]; }; struct wOCR_matchGrid alphaMatch[26] = { {'A', {0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1}}, {'B', {0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1}}, /* etc */ }; </code></pre> <p>Note that data cannot be arbitrarily sized in this case.</p> http://stackoverflow.com/questions/1351028/runtime-error-sigsegv/1351120#1351120 1 Answer by Tyler McHenry for runtime error (SIGSEGV) Tyler McHenry 2009-08-29T10:44:56Z 2009-08-29T15:10:15Z <p>It seems like you're trying to answer this: <a href="http://www.spoj.pl/problems/TEST/" rel="nofollow">http://www.spoj.pl/problems/TEST/</a> . This problem certainly does not require you to read or write anything from a file, and their server may not allow you to open files on its disk. Even if it does, you're trying to use a windows-style path (with a backslash) on what may be a non-Windows server. And even if it does allow file creation and windows-style path separation, you are trying to create your file in the filesystem root directory, and they almost certainly do not allow file creation <em>there</em>.</p> <p>Combined with the <code>system("exit")</code> issue that everyone pointed out where it doesn't actually exit the program, this will cause you to receive a NULL file pointer and crash when you try to use it.</p> <p>Re-read the problem description - you're over-thinking it. It doesn't say anywhere that you have to wait until you get a 42 to print out the other numbers. All you have to do is print back what is entered until you get a 42. That should make the solution much simpler. It's not supposed to be even a mildly challenging problem; it's just supposed to familiarize you with their system. </p> http://stackoverflow.com/questions/1351199/how-can-i-create-a-static-object-member-of-class/1351226#1351226 2 Answer by Tyler McHenry for How can I create a static object member of class? Tyler McHenry 2009-08-29T11:38:38Z 2009-08-29T11:38:38Z <p>There are a few ways to do this. One is just to keep doing as you're doing and initialize the pFoo array like this</p> <pre><code>// In source file (not header) CFoo* CFoo::pFoo[2] = {new CFoo(1), new CFoo(2)}; </code></pre> <p>But I would suggest wrapping them in an accessor like this:</p> <pre><code>// In header class CFoo { public: CFoo(int a); CFoo* getFoo1() const; CFoo* getFoo2() const; private: static CFoo* getFoo(int n); }; // In source file CFoo::CFoo(int a) { // Constructor implementation } CFoo* CFoo::getFoo1() const { return getFoo(1); } CFoo* CFoo::getFoo2() const { return getFoo(2); } CFoo* CFoo::getFoo(int n) { static CFoo* pFoo[2] = {new Foo(1), new Foo(2)}; return pFoo[n]; } </code></pre> <p>The main reason is that this gets around the static initialization order fiasco. When you have a static variable in a class, it's somewhat nondeterministic when it is initialized, which is dangerous especially when the variable is public. Wrapping in an accessor means that the variable will be initialized when the accessor is first called, and so you'll know it is initialized before you try use it. Plus you get the benefit of lazy initialization if it is not used for a while or at all.</p> <p>The code above is not thread-safe, but I doubt you're using threads here.</p> <p>Also, you should probably review your coding style. Prefixing classes with C is a somewhat archaic practice, and putting "public:" before every public function is bizarre, you only need to write it once. </p> http://stackoverflow.com/questions/1344631/how-can-i-create-an-executable-to-run-on-a-certain-processor-architecture-instea/1344654#1344654 0 Answer by Tyler McHenry for How can I create an executable to run on a certain processor architecture (instead of certain OS)? Tyler McHenry 2009-08-28T01:58:21Z 2009-08-28T01:58:21Z <p>Yes, you can make an executable that runs on the 'bare metal' of a processor. Obviously that's how operating system kernels work. The main thing you need to do is create an executable that uses no libraries whatsoever. However, the "no libraries" restriction includes the C standard library! So that means no malloc, no printf, etc. You have to basically be your own OS and manage memory and I/O yourself. This will inevitably require a fair bit of work directly in assembly at some stage. </p> <p>You also lose several other luxuries, such as main(), which can't be the starting point of your program since main() is something that is invoked by the OS and the C runtime environment.</p> http://stackoverflow.com/questions/1344011/select-call-not-returning-when-chars-on-port/1344059#1344059 5 Answer by Tyler McHenry for select() call not returning when chars on port Tyler McHenry 2009-08-27T22:18:12Z 2009-08-27T22:24:26Z <p>Before it returns, select() modifies rfds to indicate which descriptors have data ready for reading. </p> <p>In your case, the first time it returns after the 1ms timeout is reached and no data is available on your descriptor, it will remove your descriptor from the rfds set to indicate that no data is available. Then, when you call select() again the next time through the loop, rfds is an empty set, and so after that it will not even bother to check your descriptor anymore.</p> <p>You need to call FD_SET(fd1, &amp;rfds) before select each time you go through the loop.</p> http://stackoverflow.com/questions/1343789/confused-by-unresolved-external-symbol-error/1343797#1343797 2 Answer by Tyler McHenry for Confused by Unresolved external symbol error Tyler McHenry 2009-08-27T21:21:55Z 2009-08-27T21:21:55Z <p>No, it's not defined (at least in what you quoted). It's declared. The "extern" keyword means "the definition for this symbol appears in another compilation unit (source file)." You need to be linking with the object file (or library) produced from compiling the source file that defines that symbol.</p> http://stackoverflow.com/questions/1342480/check-if-input-is-blank-when-input-is-declared-as-double-c/1342523#1342523 2 Answer by Tyler McHenry for Check if input is blank when input is declared as double [C++] Tyler McHenry 2009-08-27T17:21:57Z 2009-08-27T18:37:00Z <p>What you need to check is the state of the input stream after you try to read in the double.</p> <p>For example</p> <pre><code>cin &gt;&gt; Delay1; if (!cin.fail()) { // Input was a double } else { // Input was something that could not be interpreted as a double } </code></pre> <p>You can write this more tersely as follows</p> <pre><code>if (cin &gt;&gt; Delay1) { // Input was a double } else { // Input was something that could not be interpreted as a double } </code></pre> <p>If the input fails, the value of Delay1 will not change, and so if you have not previously initialized it, it will be some arbitrary value. As has been pointed out, though, it will not become "NULL", since only pointers can be null, not value-types.</p> http://stackoverflow.com/questions/1380907/error-calling-function-and-passing-a-reference-to-pointer-with-a-derived-type/1380940#1380940 Comment by Tyler McHenry on Error calling function and passing a reference-to-pointer with a derived type Tyler McHenry 2009-09-04T18:52:23Z 2009-09-04T18:52:23Z d is defined outside of main. It's not a temporary. http://stackoverflow.com/questions/1379836/error-in-quicksort-implementation/1379872#1379872 Comment by Tyler McHenry on Error in Quicksort implementation? Tyler McHenry 2009-09-04T15:15:42Z 2009-09-04T15:15:42Z Uh, his question is about why he's getting <i>better</i> than expected performance http://stackoverflow.com/questions/1379593/once-i-determine-a-var-exist-in-php-do-i-need-to-keep-checking-it-in-that-page/1379623#1379623 Comment by Tyler McHenry on Once I determine a var exist in PHP do I need to keep checking it in that page? Tyler McHenry 2009-09-04T14:40:29Z 2009-09-04T14:40:29Z If what was set to zero? If you set $myCheck = 0 then $myCheck is false (javascript follows the C rule that 0 is false and non-zero is true). If auto_id is &quot;0&quot;, then $myCheck will still be false since the value of the boolean expression assigned to $myCheck is false. http://stackoverflow.com/questions/1375200/sql-specified-data-type-is-not-valid-error Comment by Tyler McHenry on SQL "specified data type is not valid" error Tyler McHenry 2009-09-03T18:45:18Z 2009-09-03T18:45:18Z Please choose question titles that describe what your question is generally about. &quot;Newbie question&quot; could be pretty much anything. http://stackoverflow.com/questions/1374744/array-index-limit-in-c/1374793#1374793 Comment by Tyler McHenry on Array index limit in C Tyler McHenry 2009-09-03T17:23:26Z 2009-09-03T17:23:26Z In particular I am suggesting that his program is crashing not because he asked for too much RAM but because he inadvertently passed a negative number as the argument to calloc. http://stackoverflow.com/questions/1374744/array-index-limit-in-c/1374793#1374793 Comment by Tyler McHenry on Array index limit in C Tyler McHenry 2009-09-03T17:22:23Z 2009-09-03T17:22:23Z Read my answer. I did not say &quot;The system is able to allocate blocks of any size representable in a size_t&quot;. I said &quot;size_t can represent any size block that the system is able to allocate.&quot; These are quite different statements. http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/238191#238191 Comment by Tyler McHenry on Worst UI You've Ever Used Tyler McHenry 2009-09-03T16:23:12Z 2009-09-03T16:23:12Z As much as Outlook/Exchange is not exactly my cup of tea, I was thrilled beyond belief when we switched to it from Notes. In fact, I think I would have preferred the sweet release of death to continuing to use Notes. http://stackoverflow.com/questions/1373940/expected-primary-expression-before-token-in-strsafe-h/1374006#1374006 Comment by Tyler McHenry on Expected primary-expression before ',' token in strsafe.h Tyler McHenry 2009-09-03T15:57:21Z 2009-09-03T15:57:21Z In C, NULL is usually defined as (void*)0, though it is a straight 0 in C++. http://stackoverflow.com/questions/1370870/c-strings-in-c/1370897#1370897 Comment by Tyler McHenry on C-Strings in C++ Tyler McHenry 2009-09-03T14:05:56Z 2009-09-03T14:05:56Z IMO, strtok is quite useful and a lot less painful than hand-coding everything when it comes to parsing strings using only the C standard library. But yes, you do have to beware of its gotchas including the string modification and its non-reentrancy (although POSIX provides a re-entrant version called strtok_r) http://stackoverflow.com/questions/1373423/add-all-natural-numbers-that-are-multiples-of-3-and-5-what-is-the-bug-in-the-fo/1373437#1373437 Comment by Tyler McHenry on Add all natural numbers that are multiples of 3 and 5 : What is the bug in the following code. Tyler McHenry 2009-09-03T13:45:43Z 2009-09-03T13:45:43Z It doesn't, unwind is wrong about that. Your checks are sufficient to prevent adding the same number multiple times (although your loop design is unorthodox and a little confusing at first read). http://stackoverflow.com/questions/1372682/is-c-showing-its-age-as-programmers-try-to-use-it-in-ways-it-was-never-designed Comment by Tyler McHenry on Is C++ showing its age as programmers try to use it in ways it was never designed to be used? Tyler McHenry 2009-09-03T12:14:17Z 2009-09-03T12:14:17Z That <i>thing</i> is an object from boost::spirit, which is a way to write a parser in C++. It uses (abuses?) operator overloading and templates to approximate the ability to write directly in EBNF syntax, which is why you end up with such ridiculous types (although of course you never write that kind of stuff out directly). http://stackoverflow.com/questions/1370996/minus-operation-on-two-files-using-linux-commands/1371089#1371089 Comment by Tyler McHenry on "Minus" operation on two files using Linux commands Tyler McHenry 2009-09-03T02:10:48Z 2009-09-03T02:10:48Z I'd say this is easily the simplest of the answers that have been given so far. http://stackoverflow.com/questions/1370996/minus-operation-on-two-files-using-linux-commands/1371071#1371071 Comment by Tyler McHenry on "Minus" operation on two files using Linux commands Tyler McHenry 2009-09-03T02:07:54Z 2009-09-03T02:07:54Z But still... I'm not an expert on join but from reading the man page, join A B will give you all the lines in both A and B, not the lines in A but not B, which is what you asked about. From what I can tell the join-based answer to your original question would be something like: <code>join -t \n -v 1 A B | join -t \n -v 1 - C | join -t \n -v 1 - D</code> http://stackoverflow.com/questions/1370996/minus-operation-on-two-files-using-linux-commands/1371071#1371071 Comment by Tyler McHenry on "Minus" operation on two files using Linux commands Tyler McHenry 2009-09-03T02:00:22Z 2009-09-03T02:00:22Z Doesn't that do pretty much the opposite of what you want? That would give you lines that exist in all four files. Plus, it doesn't work if any of your lines have spaces in them. http://stackoverflow.com/questions/1370976/c-style-prefixing-virtual-keyword-to-overridden-methods Comment by Tyler McHenry on C++ Style: Prefixing virtual keyword to overridden methods Tyler McHenry 2009-09-03T01:44:03Z 2009-09-03T01:44:03Z Unfortunately there is no rationale included in the spec. It just says it is &quot;legal but redundant (has empty semantics)&quot;. Would be interesting to hear, though, if there is any record of what the rationale was.