| Author |
variable declaration and removal
|
Gajan Raj
Greenhorn
Joined: Sep 19, 2003
Posts: 12
|
|
Hi I have a jsp page and id something like this <% String str; use str %> html code <% String str; use str %> I understand that I can't declare the variable str twice. However is there a way of destoying str after the first use so that it can be declared again... Regards, Gajan
|
 |
Jeffrey Hunter
Ranch Hand
Joined: Apr 16, 2004
Posts: 305
|
|
Destroying objects is best left to the JVM. If all you want to do is assign a new value to str, just assign a new value to str (how's that for a recursive answer!):
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26138
|
|
Gajan, Alternatively, you can put part of the code in its own scope. This is useful if you are including a jsp within another and do not have control over the names.
|
[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
|
 |
 |
|
|
subject: variable declaration and removal
|
|
|