Ed Swangren

10,962
Reputation
777 views

Registered User

name Ed Swangren
member for 1 year
seen 7 hours ago
website
location US
age 26
13h
comment Is 42 a valid credit card number? jQuery validator thinks it is
Wow, what a crappy validation routine.
20h
comment String.comparison performance (with trim)
Errr, yes :-) [15chars]
20h
comment String.comparison performance (with trim)
Well, there is nothing wrong with using a more efficient method in this case. Using String.Compare is not some "clever" hack, it is a built in way to compare strings that is also more efficient than calling ToUpper().ToLower(). It is also more clear in intent, so I don't think that you can make a valid 'premature-optimization" case in this instance/
1d
comment Small question concerning redefining member functions
If only one subclass needs the functionality provided by the "fee" functions than inheritance is not the correct tool to be using. Inheritance is used to model an "is-a" relationship, it is not just a way to pass functions from one class to another. Look into composition.
1d
awarded  Mortarboard
Dec
5
comment strange output in comparision of float with float literal
Yes, Michael has proposed the best answer here. You should never be looking for equality between floating point numbers. This answer will only lead to more confusion later on.
Dec
4
comment C++ - Arguments for Exceptions over Return Codes
Sure, but I kept everything simple for the sake of explanation. One macro would not be able to handle all of the error conditions in the real code.
Dec
4
comment Disallow any member function to change its data members in C++ Class
@Glen: Sure, that's right. I think that I misunderstood the question. I took the title "Disallow any member function to change its data members in C++ Class" to mean "how do I create a member function that cannot modify any members." I think you were correct and I was wrong, +1
Dec
4
comment Disallow any member function to change its data members in C++ Class
And that does not answer the intent of the question. The OP wants a contract that says "I am a function that will not change the internal state of this object", not "You have no idea what I may change, but don't worry about it; my private members are const".
Dec
4
comment Disallow any member function to change its data members in C++ Class
That is ridiculous. You cannot make every member variable const. There is nothing wrong with changing state internally and exposing functions which should not change state as 'const'.
Dec
4
comment Disallow any member function to change its data members in C++ Class
You mean the member functions, right?
Dec
4
comment C++ - Arguments for Exceptions over Return Codes
"Exceptions are expensive and break the promise to pay only for what we use." - throwing exceptions is expensive, wrapping code that does not cause an exception in a 'try' block is not (although if code size is a premium, you have a valid point). So you really only pay a very small amount for what you may not use.
Dec
4
revised C++ - Arguments for Exceptions over Return Codes
added 47 characters in body
Dec
4
answered C++ - Arguments for Exceptions over Return Codes
Dec
3
comment how to transition from c# to python?
Wow, you really rely on intellisense that much? That is a bad sign...
Dec
3
comment Clarification on a header without #includes
Ugh, this stuff is always great fun to debug.
Dec
3
comment Big problem!running the java game
If you can't even narrow the problem down for us you have a lot more studying to do.
Dec
3
comment Proper way to accomplish this construction using constructor chaining? (C#)
Just like method chaining; you are calling constructor B from constructor A with the arguments required by B.
Dec
3
comment Proper way to accomplish this construction using constructor chaining? (C#)
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. :-)
Dec
3
comment many people remove the copyright from my script , what i can do ?
I voted to close this as "Not Programming Related". 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.
Dec
3
awarded  Enlightened
Dec
2
comment Paying great programmers more than average programmers
+1 I agree with you. People who blindly repeat the "10x better" mantra are probably not one of those because it shows that they are not thinking critically.
Dec
2
comment Const correctness: const char const * const GetName const (//stuff);
Yes Johannes, and I meant to say "valid C++".
Dec
2
comment Const correctness: const char const * const GetName const (//stuff);
@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
Dec
2
comment Const correctness: const char const * const GetName const (//stuff);
Downvoted? Why?
Dec
2
comment Const correctness: const char const * const GetName const (//stuff);
Yes, you are right about the body, but not about the method vs function statement.
Dec
2
answered Const correctness: const char const * const GetName const (//stuff);
Dec
2
comment java null pointer exception
If you set 'buf' to null... it will be null.
Dec
2
comment Logical value of an assignment in C
Ummm... the bleeding eyes thing. Yeah, definitely the bleeding eyes.
Dec
2
accepted C#: What is the proper way to swap winform controls?
Dec
2
answered C#: What is the proper way to swap winform controls?
Dec
2
awarded  Pundit
Dec
1
awarded  Enlightened
Dec
1
awarded  Nice Answer
Nov
30
comment Yield from C# to C++, dealing with containers
What is so inelegant about GetValue(index)?
Nov
29
comment C# Generics, Constrain to Specific Structs
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 "MyStruct" in your question is misleading.
Nov
29
revised multiplication of large numbers, how to catch overflow
edited body
Nov
28
comment What “already invented” algorithm did you invent?
Hehe, perhaps you're right
Nov
28
comment Anyone has an alternative to using static methods in a C# interface?
How would you expect a static interface method to work exactly? What gets called when you run IFoo.SomeStaticMethod?
Nov
27
comment What is the most frustrating restriction your IT department has ever put on you or your machine?
Are there legitimate reasons to use twitter at the workplace? Not that I am a fan of restrictive work environments, but still...
Nov
27
revised Why isn’t my virtual function working?
edited title
Nov
26
comment Programmatically adding buttons - Problem with subscription to a mouse event
Why are you creating anonymous functions to wrap defined functions? Just define the signatures correctly in the first place to avoid confusion.
Nov
25
accepted Is .NET supporting changes on a running desktop app?
Nov
24
accepted Calling Native APIs from Managed Code
Nov
24
answered Calling Native APIs from Managed Code
Nov
24
accepted glew32.lib linker error
Nov
24
answered glew32.lib linker error
Nov
24
answered Dealing with Tokens in C#
Nov
24
answered data types and structs in C#
Nov
23
answered C#: Is it possible to have a single application behave as Console or Windows application depending on switches?