User Trent - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T10:46:58Z http://stackoverflow.com/feeds/user/9083 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1104922/compiler-test-cases-or-how-to-test-a-compiler/1104946#1104946 4 Answer by Trent for Compiler test cases or how to test a compiler Trent 2009-07-09T16:19:40Z 2009-07-09T16:19:40Z <p>There are several compiler test suites out there. We've had some luck using the <a href="http://www.plumhall.com/suites.html" rel="nofollow">Plum Hall</a> test suite for a C compiler. It consists of a large set of C code specifically written to test against the language standard. It verifies that the compiler can handle the language syntax and semantics. </p> http://stackoverflow.com/questions/1075405/two-c-syntax-tidbits-no-init-for-and-char-w4-vs-char-w4/1075429#1075429 1 Answer by Trent for Two C syntax tidbits: no init for and char *w[4] vs char w[4] Trent 2009-07-02T16:40:17Z 2009-07-02T16:40:17Z <p>There is nothing special about a for loop without an initial condition. The condition will still be checked at the beginning of each loop to determine if it should continue and the last expression will still be executed at the end of each iteration.</p> <p>The for loop in your question:</p> <pre><code>for (; *p == *q; p++, q++) </code></pre> <p>will loop as long as what p and q are pointing to are the equivalent. For example, if p and q are both char * that point to strings, this will loop until the first difference is found in the strings.</p> http://stackoverflow.com/questions/922256/c-array-shuffle/922284#922284 1 Answer by Trent for C++ Array Shuffle Trent 2009-05-28T17:48:35Z 2009-05-28T18:35:42Z <p>You declared deck as an array of pointers but you didn't allocate any space for it. If you de-reference it without allocating space you will get a seg-fault. </p> http://stackoverflow.com/questions/922248/is-there-any-real-risk-to-deriving-from-the-c-stl-containers/922329#922329 3 Answer by Trent for Is there any real risk to deriving from the C++ STL containers? Trent 2009-05-28T17:58:14Z 2009-05-28T17:58:14Z <p>Also, in most cases, you should prefer membership over inheritance if possible.</p> http://stackoverflow.com/questions/918236/interesting-scope-problem-explanation/918239#918239 3 Answer by Trent for Interesting Scope Problem, Explanation? Trent 2009-05-27T22:05:50Z 2009-05-27T22:05:50Z <p>The scope of your second 'foo' starts at its declaration and continues until the end of the block it is declared in. When you call free(foo) it is acting on the first 'foo' because the second foo has not been declared yet.</p> <p>After declaring the second 'foo' there is no way to access the outer 'foo'. You have essentially masked the name.</p> http://stackoverflow.com/questions/899917/why-do-people-use-enums-in-c-as-constants-while-they-can-use-const/900144#900144 1 Answer by Trent for Why do people use enums in C++ as constants while they can use const? Trent 2009-05-22T21:48:38Z 2009-05-22T21:48:38Z <p>Some debuggers will show the enumeration name instead of its value when debugging. This can be very helpful. I know that I would rather see <code>day_of_week = MONDAY</code> than <code>day_of_week = 1</code>.</p> http://stackoverflow.com/questions/798919/most-readable-way-to-write-simple-conditional-check/798954#798954 5 Answer by Trent for Most readable way to write simple conditional check Trent 2009-04-28T17:09:12Z 2009-04-28T17:09:12Z <p>Note that option 1 does not allow for short circuiting behavior. That is, you calculate the value of all of the conditionals before evaluating the result of the first.</p> http://stackoverflow.com/questions/794244/how-should-i-correct-this-code-that-causes-value-computed-not-used-warning/794277#794277 2 Answer by Trent for How should I correct this code that causes "value computed not used" warning? Trent 2009-04-27T16:31:31Z 2009-04-27T16:31:31Z <p>Initialize myMin and myMax with DBL_MAX and DBL_MIN respectively and get rid of the first time through the loop check.</p> http://stackoverflow.com/questions/722150/sprintf-outcome-problem/722157#722157 7 Answer by Trent for sprintf outcome problem Trent 2009-04-06T16:13:58Z 2009-04-06T16:13:58Z <p>The 4 in %04d sets the total width of the printed value</p> http://stackoverflow.com/questions/721861/in-case-of-integer-overflows-what-is-the-result-of-unsigned-int-int-unsig/722100#722100 1 Answer by Trent for In case of integer overflows what is the result of (unsigned int) * (int) ? unsigned or int? Trent 2009-04-06T15:58:58Z 2009-04-06T15:58:58Z <p>For C, refer to "Usual arithmetic conversions" (C99: Section 6.3.1.8, ANSI C K&amp;R A6.5) for details on how the operands of the mathematical operators are treated.</p> <p>In your example the following rules apply:</p> <p>C99:</p> <blockquote> <p>Otherwise, if the type of the operand with signed integer type can represent all of the values of the type of the operand with unsigned integer type, then the operand with unsigned integer type is converted to the type of the operand with signed integer type.</p> <p>Otherwise, both operands are converted to the unsigned integer type corresponding to the type of the operand with signed integer type.</p> </blockquote> <p>ANSI C:</p> <blockquote> <p>Otherwise, if either operand is unsigned int, the other is converted to unsigned int.</p> </blockquote> http://stackoverflow.com/questions/706721/how-do-i-pass-a-method-as-a-parameter-in-python/706749#706749 1 Answer by Trent for How do I pass a method as a parameter in python Trent 2009-04-01T18:13:07Z 2009-04-01T18:13:07Z <p>Here is your example re-written to show a stand-alone working example:</p> <pre><code>class Test: def method1(self): return 'hello world' def method2(self, methodToRun): result = methodToRun() return result def method3(self): return self.method2(self.method1) test = Test() print test.method3() </code></pre> http://stackoverflow.com/questions/683942/whats-wrong-with-my-file-dependencies/683950#683950 2 Answer by Trent for What's wrong with my file dependencies? Trent 2009-03-25T23:35:51Z 2009-03-25T23:50:12Z <p>You need a forward declaration for class Foo. For more information refer to item 31 of "Effective C++, Third Edition". Note: if you forward declare Foo that means your class Moo will only be able to have pointers of type Foo.</p> <p>If something includes Foo.h this is what happens (the arrows show dependency):</p> <p>Foo.h --includes--> mainHeader.h --includes--> Moo.h --includes--> Foo.h</p> <p>Note that when class Moo is specified the second Foo.h is not included due to your guards, also class Foo has not been declared yet because that happens after including mainheader.h</p> http://stackoverflow.com/questions/678033/how-to-avoid-code-duplication-between-similar-isrs/678072#678072 2 Answer by Trent for How to avoid code duplication between similar ISRs? Trent 2009-03-24T15:58:32Z 2009-03-24T15:58:32Z <p>If they are handling the same type of device it's quite reasonable to have just one interrupt handler handling multiple interrupts. You could check which flag was set at the top and continue on from there. However, I wouldn't recommend this if the two interrupt handlers are for different types of devices and just have the same logic flow.</p> http://stackoverflow.com/questions/668280/whats-the-most-efficient-way-to-make-bitwise-operations-in-a-c-array/668288#668288 0 Answer by Trent for What's the most efficient way to make bitwise operations in a C array Trent 2009-03-20T22:54:08Z 2009-03-20T22:54:08Z <p>Iterate over each array in a loop applying the desired operator and storing the result in a new array.</p> http://stackoverflow.com/questions/643427/what-word-processor-do-you-use-for-technical-papers/643644#643644 0 Answer by Trent for What word processor do you use for technical papers? Trent 2009-03-13T16:51:59Z 2009-03-13T16:51:59Z <p>I like <a href="http://www.docbook.org/" rel="nofollow">DocBook</a> and use <a href="http://xmlgraphics.apache.org/fop/" rel="nofollow">FOP</a> to create PDFs from it.</p> http://stackoverflow.com/questions/640657/whats-the-difference-between-c-and-c/640853#640853 1 Answer by Trent for What's the difference between C and C++ Trent 2009-03-12T23:12:34Z 2009-03-12T23:12:34Z <p>Another feature C++ has over C is exception handling in the form of throw ... catch.</p> http://stackoverflow.com/questions/636865/whats-the-best-programming-language-to-use-on-a-sucky-computer/636875#636875 2 Answer by Trent for What's the best programming language to use on a sucky computer? Trent 2009-03-12T00:11:51Z 2009-03-12T00:11:51Z <p>This will depend on your target application really. If you are building small programs in order to learn a programming language it doesn't really matter how "sucky" your development machine is.</p> http://stackoverflow.com/questions/631273/function-pointers-callbacks-c/631336#631336 0 Answer by Trent for function pointers callbacks C Trent 2009-03-10T17:11:33Z 2009-03-10T17:11:33Z <p>Registering a callback means that you are specifying which function should be called when the event of interest occurs. Basically you are setting the function pointer when registering a callback.</p> http://stackoverflow.com/questions/617358/get-optarg-as-a-c-string-object/617364#617364 6 Answer by Trent for Get optarg as a C++ string object Trent 2009-03-06T00:54:17Z 2009-03-06T00:54:17Z <p>You told printf that you were suppling a c style string (null terminated array of chars) when specifying %s, but you provided a string class instead. Assuming you are using std::string try:</p> <pre><code>printf("bar : %s\n", bar.c_str()); </code></pre> http://stackoverflow.com/questions/616318/what-is-the-best-way-to-implement-precomputed-data/616336#616336 1 Answer by Trent for What is the best way to implement precomputed data? Trent 2009-03-05T19:45:11Z 2009-03-05T19:45:11Z <p>Create a program that outputs valid C# code which initializes your lookup tables. Make this part of your build process so that it will automatically create the source file and then build the rest of your project.</p> http://stackoverflow.com/questions/608856/magic-numbers-vs-named-constants/608866#608866 2 Answer by Trent for Magic numbers vs named constants Trent 2009-03-04T00:58:21Z 2009-03-04T00:58:21Z <p>I tend to use constants over magic numbers almost exclusively. I think it increases readably and gives you one point in the program to fix any errors. There are several magic '60's, for example: 60 seconds in a minute, 60 minutes in an hour.</p> http://stackoverflow.com/questions/608631/header-files-in-c-and-c/608636#608636 2 Answer by Trent for Header Files in C and C++ Trent 2009-03-03T23:08:53Z 2009-03-03T23:08:53Z <p>Generally there will be one .h file for each .c/.cpp file.</p> http://stackoverflow.com/questions/608196/why-should-i-capitalize-my-sql-keywords/608201#608201 35 Answer by Trent for Why should I capitalize my SQL keywords? Trent 2009-03-03T21:11:12Z 2009-03-03T21:11:12Z <p>I think the latter is more readable. You can easily separate the keywords from table and column names, etc.</p> http://stackoverflow.com/questions/608175/what-does-this-error-mean-error-expected-specifier-qualifier-list-before-type/608185#608185 10 Answer by Trent for What does this error mean: "error: expected specifier-qualifier-list before 'type_name'"? Trent 2009-03-03T21:07:06Z 2009-03-03T21:07:06Z <p>The compiler doesn't know that spe_context_ptr_t is a type. Check that the appropriate typedef is in scope when this code is compiled. You may have forgotten to include the appropriate header file.</p> http://stackoverflow.com/questions/607348/c-arrays-and-unbroken-lists/607364#607364 3 Answer by Trent for C Arrays and unbroken lists Trent 2009-03-03T17:35:14Z 2009-03-03T17:35:14Z <p>One problem you have is that you compare count with 3 too early. Wait until you see a change in the bitstream. Try a while loop until the bit flips then compare the count.</p> http://stackoverflow.com/questions/187455/counting-array-elements-in-python/187463#187463 20 Answer by Trent for Counting array elements in Python Trent 2008-10-09T14:14:56Z 2008-10-09T14:14:56Z <p>len(myArray)</p> http://stackoverflow.com/questions/180549/learn-c-first-before-learning-objective-c/180575#180575 1 Answer by Trent for Learn C first before learning Objective-C Trent 2008-10-07T21:44:27Z 2008-10-07T21:44:27Z <p>According to <a href="http://en.wikipedia.org/wiki/Objective-C" rel="nofollow">Wikipedia</a>, Objective-C is a strict super-set of C. This being the case, I would suggest learning C first. Then when you learn Objective-C it will be clear what parts are added as part of Objective-C.</p> http://stackoverflow.com/questions/179213/c-include-semantics/179262#179262 1 Answer by Trent for C++ #include semantics Trent 2008-10-07T16:17:33Z 2008-10-07T16:17:33Z <p>I'll tackle the second part of your question:</p> <p>I normally use <code>&lt;project/libHeader.h&gt;</code> when I am including headers from a 3rd party. And <code>"myHeader.h"</code> when including headers from within the project.</p> <p>The reason I use <code>&lt;project/libHeader.h&gt;</code> instead of <code>&lt;libHeader.h&gt;</code> is because it's possible that more than one library has a "libHeader.h" file. In order to include them both you need the library name as part of the included filename.</p> http://stackoverflow.com/questions/174461/why-is-stack-overflow-so-microsoft-centric/174484#174484 2 Answer by Trent for Why is Stack Overflow so Microsoft-centric? Trent 2008-10-06T14:25:43Z 2008-10-06T14:25:43Z <p>Although C is a very popular language I'm not surprised it is only ranked 16th. There are plenty of long standing forums and places to get information about C. </p> http://stackoverflow.com/questions/174449/to-stl-or-stl-that-is-the-question/174467#174467 3 Answer by Trent for To STL or !STL, that is the question... Trent 2008-10-06T14:22:41Z 2008-10-06T14:22:41Z <p>I think it's a typical build vs buy scenario. However, I think that in this case I would almost always 'buy', and use STL - or a better solution (something from Boost perhaps), before rolling my own. You should be focusing most of your effort on what your application does, not the building blocks it uses.</p> http://stackoverflow.com/questions/1146048/omitting-arguments-in-c-templates Comment by Trent on Omitting arguments in C++ Templates Trent 2009-07-17T23:32:09Z 2009-07-17T23:32:09Z @ Ed Swangren, The &quot;just try it&quot; method is very uninformative. At best it tells you that a particular compiler allows the given syntax. It tells you nothing about the semantics or correctness of the statement with regards to the language standard. http://stackoverflow.com/questions/922256/c-array-shuffle/922284#922284 Comment by Trent on C++ Array Shuffle Trent 2009-05-28T18:35:12Z 2009-05-28T18:35:12Z @Everett yes, that is fine. but as n8wrl has pointed out in his answer: you probably don't want an array of pointers to begin with. Possibly a pointer to an array: Card (* deck)[deckSize] http://stackoverflow.com/questions/922248/is-there-any-real-risk-to-deriving-from-the-c-stl-containers/922329#922329 Comment by Trent on Is there any real risk to deriving from the C++ STL containers? Trent 2009-05-28T18:30:13Z 2009-05-28T18:30:13Z @Thomas L Holaday Of course not; perhaps I should clarify. If you aren't going to be specializing the base class but merely need to use the base class features in your class (as in the example) it is better to have a private member of that class in your class. All the other benefits listed in the question are gained simply by having a class not that fact that it inherited from any other particular class. http://stackoverflow.com/questions/151587/how-do-i-disable-tortoise-bzr/364875#364875 Comment by Trent on How do I disable Tortoise BZR? Trent 2009-05-28T18:01:29Z 2009-05-28T18:01:29Z I agree, 'hg' is much easier to type than 'bzr', but I don't think its THAT bad. http://stackoverflow.com/questions/922256/c-array-shuffle/922288#922288 Comment by Trent on C++ Array Shuffle Trent 2009-05-28T17:54:21Z 2009-05-28T17:54:21Z re: random numbers. This sound like pretty marginal advise at best. http://stackoverflow.com/questions/922256/c-array-shuffle/922284#922284 Comment by Trent on C++ Array Shuffle Trent 2009-05-28T17:52:08Z 2009-05-28T17:52:08Z @yz I'm, not sure someone who doesn't &quot;quite understand function parameters with pointers and references&quot; realizes that allocating space for a pointer is part of &quot;initializing&quot; it. http://stackoverflow.com/questions/918236/interesting-scope-problem-explanation/918288#918288 Comment by Trent on Interesting Scope Problem, Explanation? Trent 2009-05-27T22:32:36Z 2009-05-27T22:32:36Z This answer is very C++ specific. The question is also tagged with C and objective-C. http://stackoverflow.com/questions/918236/interesting-scope-problem-explanation/918242#918242 Comment by Trent on Interesting Scope Problem, Explanation? Trent 2009-05-27T22:28:00Z 2009-05-27T22:28:00Z @Josh Thanks for the clarification. 'foo' in the example clearly cannot be a global variable - I didn't expand on that in my early comment. http://stackoverflow.com/questions/918236/interesting-scope-problem-explanation/918242#918242 Comment by Trent on Interesting Scope Problem, Explanation? Trent 2009-05-27T22:17:52Z 2009-05-27T22:17:52Z Which compiler/language allows ::foo to access the outer foo? I am not familiar with that in standard C or C++. Not sure about objective-C but I don't think it's allowed there either. http://stackoverflow.com/questions/911660/how-could-this-c-fragment-be-written-more-safely/913610#913610 Comment by Trent on How could this C fragment be written more safely? Trent 2009-05-27T17:19:07Z 2009-05-27T17:19:07Z @Aaron As mentioned before, strdup() is not ANSI, it will not exist on all systems. The point of this answer can be applied when you write your own version of strdup(). http://stackoverflow.com/questions/13128/how-to-combine-several-c-c-libraries-into-one/22041#22041 Comment by Trent on How to combine several C/C++ libraries into one? Trent 2009-05-22T22:01:11Z 2009-05-22T22:01:11Z No, you do not link when you create &quot;your static lib.a&quot;. Linking is only performed when creating the final executable. This is precisely the reason the question was asked. http://stackoverflow.com/questions/798612/syntax-for-dereferencing-a-pointer-in-c-or-c Comment by Trent on Syntax for dereferencing a pointer in C (or C++) Trent 2009-04-28T16:01:21Z 2009-04-28T16:01:21Z In #2, the last element, member, should also be accessed using -&gt; http://stackoverflow.com/questions/794132/returning-an-object-vs-returning-a-tuple/794200#794200 Comment by Trent on Returning an object vs returning a tuple Trent 2009-04-27T16:22:03Z 2009-04-27T16:22:03Z I thought a mantra of Python was &quot;Namespaces are one honking great idea -- let's do more of those!&quot;. Isn't a class better than just a group of related functions (that operate of tuples) better in this regard? Why do you have a requirement of state for a class? BTW, I am new to Python but I thought the idea of creating classes was a good thing -- not something to be avoided. http://stackoverflow.com/questions/686470/my-return-type-is-meaningless-why/686558#686558 Comment by Trent on My return type is meaningless, why? Trent 2009-03-26T16:39:02Z 2009-03-26T16:39:02Z From the question: &quot;pointer than cannot be changed, and ... the thing it points to to not be changed either.&quot; He declared the return type correctly based on his intentions. http://stackoverflow.com/questions/686470/my-return-type-is-meaningless-why Comment by Trent on My return type is meaningless, why? Trent 2009-03-26T16:24:52Z 2009-03-26T16:24:52Z Which compiler and compilation flags are you using?