From: Robert Klemme Date: 2003-02-06T17:09:48+09:00 Subject: Re: Local variables & blocks "Brian Candler" schrieb im Newsbeitrag news:20030205235526.GA16872@uk.tiscali.com... > Is 'i' a block local variable? Is 'j' a block local variable? > > The answer now is: "it depends". It depends on whether you happen to have > used a local variable called 'i' or 'j' earlier in the method. You have to > scan your whole method to find out. You surely don't write methods that are longer that a printing page, do you? When there is a block inside a method, then that block was ment to be there, i.e., it was designed to be there. If you need the functionality inside the block elsewhere, you make it into a method anyway. Regards robert