User Ed Swangren - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T08:00:01Z http://stackoverflow.com/feeds/user/1053 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1835399/const-correctness-const-char-const-const-getname-const-stuff/1835414#1835414 1 Answer by Ed Swangren for Const correctness: const char const * const GetName const (//stuff); Ed Swangren 2009-12-02T20:02:17Z 2009-12-02T20:02:17Z <p>You have one more const than is syntactically allowed, that code would not compile. Remove the "const" after "char" and before the "*". Also, the last const must come before the function body. It helps to read things like this from right to left.</p> <pre><code>const char * const GetName() const { return m_name; }; </code></pre> <p>You have a const function (i.e., the function does not alter the state of the class.), which returns a const pointer to a const char. </p> http://stackoverflow.com/questions/1830088/c-what-is-the-proper-way-to-swap-winform-controls/1830098#1830098 1 Answer by Ed Swangren for C#: What is the proper way to swap winform controls? Ed Swangren 2009-12-02T01:19:36Z 2009-12-02T01:19:36Z <p>If you do not (for some reason) want to simply change their visibility, you can add and remove them from the form's Controls collection.</p> <pre><code>// contrived example... private void Swap( Control toAdd, Control toRemove ) { this.Controls.Remove( toRemove ); this.Controls.Add( toAdd ); } </code></pre> http://stackoverflow.com/questions/1788361/calling-native-apis-from-managed-code/1788411#1788411 1 Answer by Ed Swangren for Calling Native APIs from Managed Code Ed Swangren 2009-11-24T07:20:46Z 2009-11-24T07:20:46Z <p><a href="http://www.pinvoke.net/" rel="nofollow">http://www.pinvoke.net/</a></p> <p>That should do it.</p> http://stackoverflow.com/questions/1787748/glew32-lib-linker-error/1787754#1787754 1 Answer by Ed Swangren for glew32.lib linker error Ed Swangren 2009-11-24T04:21:22Z 2009-11-24T04:21:22Z <p>You need to set your linker to look in the correct place for the library. Either you don't have the lib, or your linker can't find it. Open your project properties dialog, go to linker, specify the lib as a dependency and provide the path to the correct lib folder.</p> http://stackoverflow.com/questions/1786993/dealing-with-tokens-in-c/1787010#1787010 1 Answer by Ed Swangren for Dealing with Tokens in C# Ed Swangren 2009-11-24T00:16:55Z 2009-11-24T00:16:55Z <p>Well, whether or not there is a better way to extract two tokens than by calling GetToken twice seems irrelevant because one of your requirements is:</p> <blockquote> <p>(the class shall have) a method that subtracts exactly ONE token from your number of tokens</p> </blockquote> <p>So, it seems you are stuck with two calls. Since this is a highly contrived assignment you may as well just stick to the requirements. If you really want to learn something start your own personal project. :) </p> <p><hr></p> <p>Also, as an aside, you can chain constructors in C#. So this:</p> <pre><code>public TokenGiver() { numTokens = 0; } public TokenGiver(int t) { numTokens = t; } </code></pre> <p>...becomes...</p> <pre><code>public TokenGiver() : this(0) { } public TokenGiver(int t) { numTokens = t; } </code></pre> http://stackoverflow.com/questions/1786933/data-types-and-structs-in-c/1786951#1786951 0 Answer by Ed Swangren for data types and structs in C# Ed Swangren 2009-11-24T00:02:28Z 2009-11-24T00:02:28Z <p>'int' is simply an alias for "Int32". However, I have never seen any code that uses the aliased classes instead of the alias in C#. If I wanted to make damn sure that the int I was using was 32 bits I would use Int32, but I don't see a reason for using the more verbose "Boolean" instead of the standard alias, "bool".</p> http://stackoverflow.com/questions/1786840/c-is-it-possible-to-have-a-single-application-behave-as-console-or-windows-appl/1786858#1786858 2 Answer by Ed Swangren for C#: Is it possible to have a single application behave as Console or Windows application depending on switches? Ed Swangren 2009-11-23T23:44:08Z 2009-11-23T23:44:08Z <p>They are two different paradigms, I don't think that using a command line switch like this is a good idea. Why not build the core logic into a console application and then call that from the GUI when needed? This would nicely separate the UI from the implementation but would still provide a way to use the Console app stand alone when needed.</p> http://stackoverflow.com/questions/1781715/my-software-is-consuming-lot-of-memory-any-tools-thatll-help-me-in-knowing-what/1781721#1781721 0 Answer by Ed Swangren for My software is consuming lot of memory. Any tools that'll help me in knowing whats causing it? Ed Swangren 2009-11-23T08:10:07Z 2009-11-23T08:10:07Z <p>There are many .NET memory profilers out there:</p> <p><a href="http://www.google.com/search?q=.net+memory+profiler&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;client=firefox-a" rel="nofollow">http://www.google.com/search?q=.net+memory+profiler&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;client=firefox-a</a></p> <p>I would also add that your .NET program is going to allocate memory for what it needs internally, as well as extra memory that it will hang on to and use as needed. I am no .NET expert, but the memory use is not going to be as deterministic as it would be if your program were written in an unmanaged language.</p> http://stackoverflow.com/questions/1780207/problem-with-conversion/1780218#1780218 0 Answer by Ed Swangren for problem with conversion Ed Swangren 2009-11-22T22:22:40Z 2009-11-22T22:22:40Z <blockquote> <p>How to convert a string variable without quotes???</p> </blockquote> <p>That doesn't make sense. String literals <em>must</em> be surrounded with quotes, that is what makes it a string. You cannot just try to convert undeclared variables into strings by their name, it doesn't work that way. You just need to compare against an actual string, like you do in your second example.</p> http://stackoverflow.com/questions/1774676/execute-code-in-if-else-statement/1774683#1774683 1 Answer by Ed Swangren for Execute code in if-else statement Ed Swangren 2009-11-21T06:12:08Z 2009-11-21T06:12:08Z <p>So... you want to execute the code inside the if block... and the code inside of the else block... of the same if/else statement? Then... you should get rid of the else and stick taht code in the if.</p> <pre><code>if something do_this do_that end </code></pre> <p>The else statement is designed to execute only if the if statement is not executed and vice-versa, that is the whole point. This is an odd question...</p> http://stackoverflow.com/questions/1758608/is-there-an-non-short-circuited-logical-and-in-c/1758618#1758618 20 Answer by Ed Swangren for Is there an Non-Short circuited logical "and" in C++? Ed Swangren 2009-11-18T19:54:38Z 2009-11-18T21:17:38Z <blockquote> <p>and yes, I realize that I could use temporary variables to store the returns of the two functions and then do the "short-circuit" logic on the temporary variables, but I was wondering if there was an "elegant" language solution to keep the one-line return in Func3 while still getting the logging messages from both functions.</p> </blockquote> <p>That would be the "elegant" solution :). Relying on the <em>side effects</em> of the evaluation order would be far from elegant, error prone, and hard to understand for the next developer who wanders into your project. Relying on the <em>side effects</em> of course contrasts with something like the following snippet, which is a completely logical and valid use case for relying on evaluation order alone:</p> <pre><code>if ( obj != NULL &amp;&amp; obj-&gt;foo == blah ) { /* do stuff */ } </code></pre> http://stackoverflow.com/questions/1753508/how-could-i-get-a-random-string-from-a-list-and-assign-it-to-a-variable/1753546#1753546 3 Answer by Ed Swangren for How could I get a random string from a list and assign it to a variable Ed Swangren 2009-11-18T04:04:58Z 2009-11-18T04:04:58Z <p>Something like this?</p> <pre><code>List&lt;string&gt; myList = new List&lt;string&gt;( ); // add items to the list Random r = new Random( ); int index = r.Next( myList.Count ); string randomString = myList[ index ]; </code></pre> http://stackoverflow.com/questions/1752106/exit-sub-equivalent-in-objective-c/1752120#1752120 5 Answer by Ed Swangren for Exit Sub equivalent in Objective C? Ed Swangren 2009-11-17T21:54:46Z 2009-11-17T22:01:38Z <p><em>returning</em> from a function does just that; it returns, and control is passed back to the call-e. So no, the code below the return will not execute.</p> <p>I would note that this would have taken about 30 seconds to test yourself.</p> http://stackoverflow.com/questions/1740960/translate-python-method-to-ruby/1740979#1740979 2 Answer by Ed Swangren for translate python method to ruby Ed Swangren 2009-11-16T09:14:47Z 2009-11-16T09:14:47Z <pre><code>yield [items[i]] + cc </code></pre> <p>You are attempting to concatenate an array ([items[i]]) and a Fixnum (cc). You could instead turn both into an array or use the &lt;&lt; method to push cc onto [items[i]].</p> <pre><code>yield [items[i]] &lt;&lt; cc </code></pre> http://stackoverflow.com/questions/1711547/how-to-check-if-a-param-is-true-or-false/1711565#1711565 1 Answer by Ed Swangren for How to check if a param is true or false? Ed Swangren 2009-11-10T22:05:09Z 2009-11-10T22:05:09Z <blockquote> <p>But for whatever reason that if statement just isn't doing like it seems like it should.</p> </blockquote> <p>I can almost guarantee that it is doing exactly what it should. When things don't make sense, one of our assumptions is wrong.</p> <p>Is the value actually a boolean or is it string (or something else?). If the value is a string then of course the comparison to the <em>boolean</em> value true will fail. Try comparing to 'true' and see if that works.</p> http://stackoverflow.com/questions/1706502/arrow-operator-with-arrays/1706516#1706516 0 Answer by Ed Swangren for -> Arrow operator with Arrays? Ed Swangren 2009-11-10T09:01:45Z 2009-11-10T09:01:45Z <p>Not in your case because you are accessing a struct (not a pointer to a struct) when you use</p> <pre><code>fooArray[0] </code></pre> <p>The compiler would let you know about that problem.</p> http://stackoverflow.com/questions/1704892/are-class-variables-included-in-the-7-2-guideline/1704903#1704903 10 Answer by Ed Swangren for Are class variables included in the 7 +- 2 guideline? Ed Swangren 2009-11-10T00:30:15Z 2009-11-10T00:43:29Z <p>Anyone who honestly thinks that you can arbitrarily define how many member variables a class should have has not written a lot of code or are extremely arrogant. I know it just a guideline, but honestly, if the class is well defined, conforms to the general OOP guidelines of single responsibility, and is easy to maintain, you should just spend your time solving real problems.</p> <p>BTW, I realize that this is not an actual answer, so let the downvoting begin. I just had to vent :)</p> <p>EDIT: Just did a little searching and found that this 'guideline' comes from the fact that humans have trouble remembering sequences of information with more than five or six discrete data points. Well, that's nice, and it is something to remember (especially when designing user interfaces), but in practice you cannot design your code this way. Do what makes sense and makes your life easier (maintenance considerations being part of that decision).</p> http://stackoverflow.com/questions/1695700/ruby-recursive-looping-fails/1695723#1695723 0 Answer by Ed Swangren for ruby recursive looping fails Ed Swangren 2009-11-08T08:06:25Z 2009-11-08T08:06:25Z <p>You have an array of arrays</p> <pre><code>asdf = [[1,2,3],[11,22,33,44,55,66],[51]] </code></pre> <p>The array asdf contains three elements, each an array. So, when you index into params with an index of 3 or greater you get back nil. At the very least you will have to traverse through each sub array as well in your outer loop. That, or you can compact it into a single array.</p> <p>Also, as I noted in a comment, your routine is not recursive at all. You have a method 'recursive' which calls another method 'traverse' inside of a loop.</p> http://stackoverflow.com/questions/1690670/c-return-pointer-question/1690710#1690710 10 Answer by Ed Swangren for C return pointer question Ed Swangren 2009-11-06T21:47:44Z 2009-11-07T21:37:23Z <p>First, a() is declared as returning void, but you attempt to return a char*. Change the signature to return a char*.</p> <p>Second, your function is fine, but your example code has a memory leak because you never free the memory that the returned pointer points to. </p> <p>Third, as gbrandt pointed out, you are not checking for success after the call to malloc. malloc can fail, and checking to see if it did is a good habit to get into.</p> <p><hr></p> <p>Another way to accomplish this would be to pass a pointer to a pointer into a() instead, and then the caller has to create the pointer themselves before passing it to a(), but either way you still need to free the memory. To be honest, I would go with your approach over this in this case. There is no compelling reason to do it this way, just thought I would mention it.</p> <pre><code>void a(char **p) { *p = malloc(8); if (*p) { **p[0] = 'a'; **p[1] = 'b'; ... **p[7] = 'h'; } } int main(void) { char *x; a(&amp;x); //do something with x ..... free(x); } </code></pre> <p>If this alternate approach confuses you, please let me know as I would be happy to provide an explanation (though, at the moment, I need to get back to work!)</p> http://stackoverflow.com/questions/1689652/how-do-i-dispose-of-a-class-that-is-a-property-of-another-class/1689662#1689662 4 Answer by Ed Swangren for how do i dispose of a class that is a property of another class? Ed Swangren 2009-11-06T19:10:08Z 2009-11-06T19:10:08Z <p>Your "Service" class should implement IDisposable if it maintains references to unmanaged resources. This tells clients of your class that they need to call Dispose() on instances of "Service". You can call Dispose() on "DC" in your class' Dispose() method.</p> <pre><code>class Service : IDisposable { public DataContext DC= new DataContext(); public void Dispose( ) { DC.Dispose( ); } } </code></pre> <p>As an aside, I would avoid creating public fields in C# where properties are the common idiom.</p> http://stackoverflow.com/questions/1689608/i-have-a-focus-problem-in-c-gui-with-tabs/1689628#1689628 0 Answer by Ed Swangren for I have a focus problem in C# GUI with tabs Ed Swangren 2009-11-06T19:05:10Z 2009-11-06T19:05:10Z <p>Just save the SelectedTab (or SelectedIndex) property of your TabControl and then set it again afterwards.</p> http://stackoverflow.com/questions/1684714/c-winforms-picture-image-box-selection-like-ms-paint/1684761#1684761 2 Answer by Ed Swangren for C# WinForms - picture / image box selection - like MS Paint Ed Swangren 2009-11-06T01:05:46Z 2009-11-06T07:11:39Z <p>It is a pretty simple problem. You need to handle MouseDown, MouseUp, and keep track of when you start and stop dragging your selection rectangle. Now that you have done that you already have the selection rect, so just use that to take a portion of the whole image. If you are displaying a scaled version just find the ratio between the control's dimensions and the dimensions of the image.</p> http://stackoverflow.com/questions/1684133/visual-c-publishing-without-installer/1684158#1684158 0 Answer by Ed Swangren for Visual C# publishing without installer Ed Swangren 2009-11-05T22:39:20Z 2009-11-05T22:39:20Z <p>.NET executables rely on a specific version of the .NET framework being installed (the version that you targeted when the exe was built). So, while you can distribute an executable (and any other dependencies) simply as a folder of files, you are taking a chance that your users will not have the correct version of .NET installed. If they do not, your application will fail to start.</p> <p>So, to sum it up; yes, you can distribute a stand-alone exe, and no, it is not really safe to do so in most cases.</p> http://stackoverflow.com/questions/1677861/how-to-implement-a-callback-in-ruby/1677978#1677978 1 Answer by Ed Swangren for How to implement a "callback" in Ruby Ed Swangren 2009-11-05T02:33:40Z 2009-11-05T02:33:40Z <p>So, this may be very "un-ruby", and I am not a "professional" Ruby developer, so if you guys are going to smack be, be gentle please :)</p> <p>Ruby has a built-int module called Observer. I have not found it easy to use, but to be fair I did not give it much of a chance. In my projects I have resorted to creating my own EventHandler type (yes, I use C# a lot). Here is the basic structure:</p> <pre><code>class EventHandler def initialize @client_map = {} end def add_listener(id, func) (@client_map[id.hash] ||= []) &lt;&lt; func end def remove_listener(id) return @client_map.delete(id.hash) end def alert_listeners(*args) @client_map.each_value { |v| v.each { |func| func.call(*args) } } end end </code></pre> <p>So, to use this I expose it as a readonly member of a class:</p> <pre><code>class Foo attr_reader :some_value_changed def initialize @some_value_changed = EventHandler.new end end </code></pre> <p>Clients of the "Foo" class can subscribe to an event like this:</p> <pre><code>foo.some_value_changed.add_listener(self, lambda { some_func }) </code></pre> <p><hr></p> <p>I am sure this is not idiomatic Ruby and I am just shoehorning my C# experience into a new language, but it has worked for me.</p> http://stackoverflow.com/questions/1677918/whats-wrong-with-this-code/1677925#1677925 11 Answer by Ed Swangren for What's wrong with this code? Ed Swangren 2009-11-05T02:16:13Z 2009-11-05T02:21:59Z <p>Those string literals are stored in readonly memory, in the data section of your executable. You cannot (and should not try) to overwrite that memory.</p> http://stackoverflow.com/questions/1677600/generic-method-to-recive-any-type-of-object-and-convert-the-object-to-a-liststri/1677630#1677630 0 Answer by Ed Swangren for Generic method to recive any type of object and convert the object to a List<string> Ed Swangren 2009-11-05T00:32:54Z 2009-11-05T01:00:06Z <blockquote> <p>my problem is how can I access the properties of the object without knowing what type of object it is?</p> </blockquote> <p>Well, in the general sense you can't. Generics is all about treating objects generically. However, you can impose type constraints by using a where clause. Based on the foreach loop I would say constrain your types to types that implement IEnumerable, but then you go on to use properties like "Color" and "EngineSize", which are very specific. I don't even know why you would have properties named "Color" and "EngineSize" that are strings, but that is another problem altogether...</p> <p>It seems like the best approach for you would be to define an interface or an abstract base class that each of these objects inherits from. Then you can use the 'where' clause to constrain to objects of that interface/base class only So...</p> <pre><code>public object[] Something&lt;T&gt;( T _cars) where T : IEnumerable&lt;MyInterface&gt; </code></pre> <p>However, if we are going to go down this road I don't see why the method should be generic at all. It could simply take an <code>IEnumerable&lt;T&gt;</code> as an input. When we only want to use one type in a method generics is not needed.</p> http://stackoverflow.com/questions/1676987/is-net-supporting-changes-on-a-running-desktop-app/1677007#1677007 1 Answer by Ed Swangren for Is .NET supporting changes on a running desktop app? Ed Swangren 2009-11-04T22:07:48Z 2009-11-04T22:07:48Z <p>No, when you hit a break point you are free to modify the code. When you continue the code will be re-compiled.</p> <p>I believe that the marketing term for this is "Edit and Continue" (and of course only applies to Visual Studio).</p> http://stackoverflow.com/questions/1676766/getting-controls-in-a-winform-to-disable-them/1676780#1676780 5 Answer by Ed Swangren for Getting controls in a winform to disable them. Ed Swangren 2009-11-04T21:34:33Z 2009-11-04T21:34:33Z <p>Just show the login form as a modal dialog, i.e., frm.ShowDialog( ).</p> <p>Or, if you really want to disable each control, use the Form's Controls collection:</p> <pre><code>void ChangeEnabled( bool enabled ) { foreach ( Control c in this.Controls ) { c.Enabled = enabled; } } </code></pre> <p>I suggest doing it this way instead of simply setting the Form's Enabled propery because if you disable the form itself you also disable the tool bar buttons. If that is ok with you then just set the form to disabled:</p> <pre><code>this.Enabled = false; </code></pre> <p>However, if you are going to do this you may as well just show the login prompt as a modal dialog :)</p> http://stackoverflow.com/questions/1669850/jpeg-compression-with-high-quality-in-c/1669866#1669866 0 Answer by Ed Swangren for Jpeg compression with high quality in c# Ed Swangren 2009-11-03T20:13:42Z 2009-11-03T20:13:42Z <blockquote> <p>It must save the file like its orjinal quality and size</p> </blockquote> <p>That doesn't make a lot of sense. When you are using lossy compression you are going to lose some information by definition. The point of compressing an image is to reduce the file size. If you need high quality and jpeg isn't doing it for you you may have to go with some type of lossless compression, but your file sizes will not be reduced by much. You could always try using the 'standard' library for compressing to jpeg (<a href="http://en.wikipedia.org/wiki/Libjpeg" rel="nofollow">libjpeg)</a> and see if that gives you any different results (I doubt it, but I don't know what .NET is using under the hood.)</p> http://stackoverflow.com/questions/1664577/what-is-the-best-way-to-get-a-proper-type-name-from-a-c-keyword/1664593#1664593 2 Answer by Ed Swangren for What is the best way to get a proper type name from a C# keyword? Ed Swangren 2009-11-03T00:41:32Z 2009-11-03T01:56:04Z <p>System.String <em>is</em> the type name, 'string' is an alias. The following code works for me, so perhaps I don't get your use case:</p> <pre><code>string s = ""; Type t = Type.GetType( s.GetType( ).ToString( ) ); Console.WriteLine( t ); // prints "System.String" </code></pre> <p>... which of course is completely redundant as you could just ask 's' for its type :)</p> <p>EDIT: After seeing the comment below, you may just need to make a switch. The problem is that Type.GetType() wants a fully qualified name, and (after some searching) I could not find a way to match an alias to its type name. If someone does find that, awesome, but something like this would work well enough:</p> <pre><code>switch (userType) { case "string": return "System.String"; case "sbyte": return "System.SByte"; case "byte": return "System.Byte"; case "short": return "System.Int16"; case "ushort": return "System.UInt16"; case "int": return "System.Int32"; case "uint": return "System.UInt32"; case "long": return "System.Int64"; case "ulong": return "System.UInt64"; case "char": return "System.Char"; case "float": return "System.Single"; case "double": return "System.Double"; case "bool": return "System.Boolean"; case "decimal": return "System.Decimal"; case "void": return "System.Void"; case "object": return "System.Object"; default: return userType; } </code></pre> http://stackoverflow.com/questions/1843219/how-to-transition-from-c-to-python Comment by Ed Swangren on how to transition from c# to python? Ed Swangren 2009-12-03T22:21:17Z 2009-12-03T22:21:17Z Wow, you really rely on intellisense that much? That is a bad sign... http://stackoverflow.com/questions/1842444/clarification-on-a-header-without-includes/1842477#1842477 Comment by Ed Swangren on Clarification on a header without #includes Ed Swangren 2009-12-03T20:15:35Z 2009-12-03T20:15:35Z Ugh, this stuff is always great fun to debug. http://stackoverflow.com/questions/1842204/big-problemrunning-the-java-game Comment by Ed Swangren on Big problem!running the java game Ed Swangren 2009-12-03T19:19:05Z 2009-12-03T19:19:05Z If you can't even narrow the problem down for us you have a lot more studying to do. http://stackoverflow.com/questions/1837087/proper-way-to-accomplish-this-construction-using-constructor-chaining-c/1837101#1837101 Comment by Ed Swangren on Proper way to accomplish this construction using constructor chaining? (C#) Ed Swangren 2009-12-03T01:37:30Z 2009-12-03T01:37:30Z Just like method chaining; you are calling constructor B from constructor A with the arguments required by B. http://stackoverflow.com/questions/1837087/proper-way-to-accomplish-this-construction-using-constructor-chaining-c Comment by Ed Swangren on Proper way to accomplish this construction using constructor chaining? (C#) Ed Swangren 2009-12-03T01:36:52Z 2009-12-03T01:36:52Z Ahhh, if only all of us could jump onto the latest and greatest version as soon as it comes out. I am still using .NET 2.0 and VS2005. :-) http://stackoverflow.com/questions/1836799/many-people-remove-the-copyright-from-my-script-what-i-can-do Comment by Ed Swangren on many people remove the copyright from my script , what i can do ? Ed Swangren 2009-12-03T00:21:04Z 2009-12-03T00:21:04Z I voted to close this as &quot;Not Programming Related&quot;. I believe that I did so too soon and, though this question is very poorly framed, it is valid. Unfortunately, I cannot remove the close vote. http://stackoverflow.com/questions/1767957/paying-great-programmers-more-than-average-programmers/1767981#1767981 Comment by Ed Swangren on Paying great programmers more than average programmers Ed Swangren 2009-12-02T20:56:18Z 2009-12-02T20:56:18Z +1 I agree with you. People who blindly repeat the &quot;10x better&quot; mantra are probably not one of those because it shows that they are not thinking critically. http://stackoverflow.com/questions/1835399/const-correctness-const-char-const-const-getname-const-stuff/1835414#1835414 Comment by Ed Swangren on Const correctness: const char const * const GetName const (//stuff); Ed Swangren 2009-12-02T20:12:03Z 2009-12-02T20:12:03Z Yes Johannes, and I meant to say &quot;valid C++&quot;. http://stackoverflow.com/questions/1835399/const-correctness-const-char-const-const-getname-const-stuff/1835414#1835414 Comment by Ed Swangren on Const correctness: const char const * const GetName const (//stuff); Ed Swangren 2009-12-02T20:08:40Z 2009-12-02T20:08:40Z @4501: Yes, and it was wrong, so I fixed it. Read the entire post. @Drakosha: Well, I didn't need to, but yes, I did check and no, it would not compile. Please explain what the extra const would mean if it were valid C http://stackoverflow.com/questions/1835399/const-correctness-const-char-const-const-getname-const-stuff/1835414#1835414 Comment by Ed Swangren on Const correctness: const char const * const GetName const (//stuff); Ed Swangren 2009-12-02T20:07:14Z 2009-12-02T20:07:14Z Downvoted? Why? http://stackoverflow.com/questions/1835399/const-correctness-const-char-const-const-getname-const-stuff/1835414#1835414 Comment by Ed Swangren on Const correctness: const char const * const GetName const (//stuff); Ed Swangren 2009-12-02T20:06:38Z 2009-12-02T20:06:38Z Yes, you are right about the body, but not about the method vs function statement. http://stackoverflow.com/questions/1831593/java-null-pointer-exception Comment by Ed Swangren on java null pointer exception Ed Swangren 2009-12-02T09:02:47Z 2009-12-02T09:02:47Z If you set 'buf' to null... it will be null. http://stackoverflow.com/questions/1831498/logical-value-of-an-assignment-in-c Comment by Ed Swangren on Logical value of an assignment in C Ed Swangren 2009-12-02T08:48:36Z 2009-12-02T08:48:36Z Ummm... the bleeding eyes thing. Yeah, definitely the bleeding eyes. http://stackoverflow.com/questions/1821988/yield-from-c-to-c-dealing-with-containers Comment by Ed Swangren on Yield from C# to C++, dealing with containers Ed Swangren 2009-11-30T19:53:28Z 2009-11-30T19:53:28Z What is so inelegant about GetValue(index)? http://stackoverflow.com/questions/1815312/c-generics-constrain-to-specific-structs/1815325#1815325 Comment by Ed Swangren on C# Generics, Constrain to Specific Structs Ed Swangren 2009-11-29T12:24:19Z 2009-11-29T12:24:19Z If you need to use this for classes or struct that you do not control you should make people aware of that. Using the name &quot;MyStruct&quot; in your question is misleading.