Current location: Hot Scripts Forums » Programming Languages » Everything Java » Difference between <%! and <% when declaring variables in .jsp


Difference between <%! and <% when declaring variables in .jsp

Reply
  #1 (permalink)  
Old 07-08-04, 08:50 PM
flekso flekso is offline
New Member
 
Join Date: Jun 2004
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Difference between <%! and <% when declaring variables in .jsp

Could someone tell me what is the difference in the examples below ?

<%

int foo = 0;

%>

--------

<%!

int foo = 0;

%>

--------

Yeah, I know the first example is using scriplet-tags and the second declaration-tags, but what's the difference or is there any ?

Is there any reasons why should one not declare variables in scriplet-tags ?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #2 (permalink)  
Old 09-10-04, 10:09 AM
asifmobin asifmobin is offline
New Member
 
Join Date: Sep 2004
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
see this

whenever a jsp file is complied its generating a corresponding servlet class file mean it is finally the servelt processed by engine.if using this <%! %> means all declaration become class member and using <% %> mean varaibles are declared in _jspInit() method.
or u can say one is local and one is class member
This will falls under jspInint() method
so it becomes local variable or a varaible in a function
<%
int foo = 0;
%>
--------
this become the class member variable
<%!
int foo = 0;
%>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump


All times are GMT -5. The time now is 10:52 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.