Joe

1,167
reputation
113 views

Registered User

name Joe
member for 1 year
seen 12 hours ago
website
location US
age
Dec
4
comment C++ - Arguments for Exceptions over Return Codes
One big reason Google doesn't use them is because Google doesn't use them. :) Basically, they're stuck. From the same coding standard document: "Because we'd like to use our open-source projects at Google and it's difficult to do so if those projects use exceptions, we need to advise against exceptions in Google open-source projects as well. Things would probably be different if we had to do it all over again from scratch."
Nov
16
awarded  Popular Question
Nov
11
revised Is there any reason to check for a NULL pointer before deleting ?
fixed spelling
Nov
10
awarded  Popular Question
Nov
5
comment Explicit implementation of interface’s GetEnumerator causes stack overflow
After looking at reflector, it's obvious why Cast doesn't work. It basically only casts each of the elements individually if it has to. In this case it sees that "this" is an IEnumerable<IThing>, so it just returns that. It's too smart for its own good. :)
Nov
5
comment Explicit implementation of interface’s GetEnumerator causes stack overflow
Oooh, good one. That makes it obvious that base.GetEnumerator() should work, if it understood covariance and contravaraince like Frank said. But since it doesn't, this does the trick pretty well!
Nov
5
comment Explicit implementation of interface’s GetEnumerator causes stack overflow
Yeah, that's definitely how I'd do it given the choice. My real life example uses CSLA though, which won't let you do that. It'd really look something like "class Things : ReadOnlyListBase<Things, Thing>, IThings"
Nov
5
comment Explicit implementation of interface’s GetEnumerator causes stack overflow
base.GetEnumerator() won't do the trick, because that returns an IEnumerator<Thing>, not an IEnumerator<IThing>.
Nov
5
comment Explicit implementation of interface’s GetEnumerator causes stack overflow
Yeah, I guess that's obvious. I'm not sure how that helps though. I need to return an IEnumerator<IThing>, not an IEnumerable.
Nov
5
asked Explicit implementation of interface’s GetEnumerator causes stack overflow
Nov
2
comment Find buy/sell prices in array of stock values to maximize positive difference
This seems to fail for the input 55.39, 109.23, 48.29, 81.59, 81.58, 105.53, 94.45, 12.24 ? Best is still to buy at 48.29 and sell at 105.53 (57.24 profit), but it says to buy at 55.39 and sell at 109.23 (53.84 profit)
Nov
2
comment What is the best Battleship AI?
In the real version, is it customary to tell your opponent what ship they hit? (e.g. "You sunk my battleship!") Without that bit of info, efficient targeting is not fun. Determining what ships are sunk seems like a variant of the packing problem. Good times!
Nov
2
comment What is the best Battleship AI?
A "peaceful" opponent that refuses to place ships causes the competition to hang. Not sure how much you care about people doing silly things like that. :)
Nov
2
revised What is the best Battleship AI?
Removed mention of nonexistant IBattleshipCompetitor interface
Oct
23
accepted Where can you release eensy weensy helpful little .NET classes?
Oct
23
answered Where can you release eensy weensy helpful little .NET classes?
Oct
22
answered What do you use to make programming flowcharts, diagrams, etc?
Sep
17
awarded  Yearling
Aug
18
awarded  Organizer
Aug
18
revised How to run explicit test cases of Nunit
edited tags
Jul
30
answered Native C/Managed C++ Debugging
Jul
29
answered Binding ItemsSource to a “proxy” collection. How to get DataContext?
Jul
15
asked Binding ItemsSource to a “proxy” collection. How to get DataContext?
Jun
22
comment Why is this compilation error coming?
If the OP needs to allocate 16GB, what do you suggest as a fix? If that's what he needs, it is definitely possible. I'm just contesting the incorrect statement "You're trying to allocate 4 times the maximum theoretical amount of memory that can exist."