Phil Nash

3,508
Reputation
438 views

Registered User

Name Phil Nash
Member for 1 year
Seen 8 hours ago
Website
http:///www.levelofindirection.com
Location London
Age
I write Windows software during the day, and iPhone and Mac apps by night. My main language skills are C, C++, C# and (more recently) Objective C and D. Also Python, Javascript, Java and I've toyed with Ruby, Scala, Haskell and Erlang. I've done a fair bit of XML, XPath, XSLT and XQuery, HTML, CSS and SQL. I also write music. *Now* can we go shopping?
Nov
25
awarded  Good Answer
Nov
24
comment Appending to NSString (immutable)?
@Rudism - the first instance is a string literal, so doesn't need to be released
Nov
24
answered Appending to NSString (immutable)?
Nov
24
comment NULL pointer is the same as deallocating it?
@Kirill, I didn't mean that bringing delete[] up was overcomplicating - just that your templated solution is a little outside the scope (no pun intended) of the original question :-)
Nov
24
comment NULL pointer is the same as deallocating it?
@Pieter, agreed. Arguably in that case std::auto_ptr is almost as good but doesn't require you to bring Boost in if you haven't already done so - although if you have tr1 you can get it from there too
Nov
24
comment NULL pointer is the same as deallocating it?
Good point for mentioning the distinction between delete and delete[], but I think the rest is overcomplicating things in the context of the question.
Nov
24
revised NULL pointer is the same as deallocating it?
Added example
Nov
24
comment NULL pointer is the same as deallocating it?
This answer should be upvoted more. +1 for pointing out that you can use third-party garbage collectors with C++
Nov
24
comment NULL pointer is the same as deallocating it?
@sharptooth: agreed. This might seem a simple question to us gnarly old C/C++ devs, but for someone new to programming, or to non-GC languages this is a perfectly valid question.
Nov
24
comment NULL pointer is the same as deallocating it?
I've reversed my downvote following the update
Nov
24
comment NULL pointer is the same as deallocating it?
Use delete with new, free with malloc. Do not mix these.
Nov
24
answered NULL pointer is the same as deallocating it?
Nov
24
answered Is system programming dead?
Nov
24
comment Is system programming dead?
+1 for bringing up D, but I don't agree with, "Sadly, it's dead, because of C/C++". D hasn't had its day yet. It's deliberately kept ticking over as a niche for the moment while D2 is fully developed - but I am confident that it will become more important in the next year or two (and yes, I did say that last year too :-) )
Nov
24
comment how to remove subview from app delegate?
Why are you doing self = con; ? Why not go straight to [con.toolbar removeFromSuperview] ?
Nov
21
awarded  Nice Question
Nov
20
answered Replacement for use of nil in dictionaries in objective-C
Nov
20
revised I m using one database with the same name in SQL Server 2000 and SQL Server 2005.
typo
Nov
20
revised I m using one database with the same name in SQL Server 2000 and SQL Server 2005.
More detail
Nov
20
comment I m using one database with the same name in SQL Server 2000 and SQL Server 2005.
Yes, instance name was really what I was looking for
Nov
20
answered I m using one database with the same name in SQL Server 2000 and SQL Server 2005.
Nov
20
comment How to share constant values in .net namespaces?
I think it needs to be clarified that this question relates to C++/CLI. I would help, though, if you also mentioned whether interoperability with other .Net languages is a factor.
Nov
20
comment How to share constant values in .net namespaces?
you can in C++/CLI, to which this question relates
Nov
20
comment How to share constant values in .net namespaces?
C++/CLI does allow constants at namespace scope - but as C# doesn't it becomes an interop problem
Nov
20
answered How to share constant values in .net namespaces?
Nov
19
comment Can I extract C++ template arguments out of a template class?
Yep, that's what I had in mind.
Nov
19
comment Can I extract C++ template arguments out of a template class?
@drpepper typename, you mean? - in any case the real problem was the template template
Nov
19
revised Can I extract C++ template arguments out of a template class?
Mention PTS
Nov
19
revised Can I extract C++ template arguments out of a template class?
Revised
Nov
19
comment Can I extract C++ template arguments out of a template class?
It's not always possible to do this. I've certainly needed the externalised form before
Nov
19
comment Can I extract C++ template arguments out of a template class?
Are you sure? Can you update your original question to reflect your change to make sure we're on the same page?
Nov
19
answered Can I extract C++ template arguments out of a template class?
Nov
19
comment Is it possible to use operator ?? and throw new Exception() ?
Mostly because when I first did this in C# I was using C#2 ;-) I didn't use the lambda for the predicate originally for the same reason, but that was a no brainer to move to. I think the extension method can be made to work nicely, but will have to play with that a bit.
Nov
19
comment Is it possible to use operator ?? and throw new Exception() ?
You could use Execute-Around to remap the exception (that would involve having another method who's purpose it was to call you back, wrapped in a try-catch block, throwing an exception of your choice. But if you're doing that you may as well use my Enforcements proposal anyway :-)
Nov
19
revised Is it possible to use operator ?? and throw new Exception() ?
fixed a teensy typo
Nov
19
answered Is it possible to use operator ?? and throw new Exception() ?
Nov
19
comment Is it possible to use operator ?? and throw new Exception() ?
I think it was because you didn't answer as Tony. Anyway, countered it for you. You're on the right track here, but Think there is a nicer, generalised, technique that I'll add as my own response(at the risk of a downvote)
Nov
19
comment Is it possible to use operator ?? and throw new Exception() ?
You can change your vote
Nov
16
comment iPhone Quartz2D: simple animation via delayed drawing
Using Core Animation, or the higher-level UIView based wrapper for it. That's what the last paragraph in my answer was talking about (the UIView animation block). You start an animation block, set some UIView properties, then commit the animation and the property changes will be animated in (you can control the timing etc).
Nov
11
answered Simple iPhone drawing app with Quartz 2D
Nov
10
comment Why should methods have a single entry and exit points?
Agreed. I voted it up :-)
Nov
10
comment Why should methods have a single entry and exit points?
The thing about RVO is that it allows you to write more natural and expressive code than you would have if you'd been trying to manually optimise. In other words it does raise the abstraction level. My point here is not that you should be trying to prematurely optimise code, but that by adopting a style that is, itself, quite natural, you allow more scope for the compiler to optimise for you anyway without having to go out of your way.
Nov
10
comment Why should methods have a single entry and exit points?
Not sure I agree at the level of genericity that is written - but reading between the lines I think we're on the same page ;-) However, see my full reply for a little more background on my position.
Nov
10
revised Why should methods have a single entry and exit points?
Added bit about RVO
Nov
10
comment Why should methods have a single entry and exit points?
@Jonathan Feinberg - your example could also be written using the ternary operator - in fact I believe it would be clearer to do so and may even make it easier for a compiler to optimise (see my response)
Nov
10
answered Why should methods have a single entry and exit points?
Nov
10
comment Why should methods have a single entry and exit points?
"I just use whatever gives the clearest code" - however I find that at least thinking in terms of single exit often leads to code that is even clearer. If you apply the rule blindly you'll get into a mess, it's true. But if you look at some code with multiple exits and consider how you coudl refactor it to have a single exit without turning into a mess I find that exercise very useful.
Nov
5
comment C# generics problem - newing up the generic type with parameters in the constructor
re "not finding out things are broken until execution time" - agreed. This is where I really miss C++ templates (no, really)
Nov
5
comment C# generics problem - newing up the generic type with parameters in the constructor
I've never liked this way of doing it, and usually default to the Activator technique (as Quintin suggested) unless use of reflection is going to have an unacceptible perfomance impact.
Nov
5
accepted How can a superview interecept a touch sequence before any of its subviews?