Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Can you declare a static variable in a method?

Answers were Sorted based on User's Feedback



Can you declare a static variable in a method?..

Answer / murali

No, Static variables can be declared as a class attributes,
for example,
public classA{
static String m2="xyz"; // this is correct form
public static void main(String args[]){
static String m1="abc"; // this gives an error
(illegal modifier for parameter;;....)
}
}

Is This Answer Correct ?    25 Yes 0 No

Can you declare a static variable in a method?..

Answer / vijayakumar chinnasamy

No static variable cannot be declared within static/non-
static method.

only "final" and "default" allowed within in method for
variable declaration. i.e u cant use
private,protected,public,static within method .it display
the compile time error "Illegal modifier".

Is This Answer Correct ?    11 Yes 1 No

Can you declare a static variable in a method?..

Answer / venkatesh

No we can't declare a static variable in a method.
only final and default scope variables are allowed inside
the method

Is This Answer Correct ?    10 Yes 0 No

Can you declare a static variable in a method?..

Answer / aravinda reddy

No we can't declare a static variable in a method or static
method, static variables are class level variables. Static
means one per class as per OO rules and method level
variables scope is with in the method. So if java allows
static variable inside a method, static concept is useless.

Is This Answer Correct ?    8 Yes 0 No

Can you declare a static variable in a method?..

Answer / ali

No Static Variable cannot declare in method.
but the method present in class can access the static variable
of class.
Or the method which is trying to access the static variable of
class but method is not part of that class at that time declare method as static then it can access that static variable.

Is This Answer Correct ?    1 Yes 0 No

Can you declare a static variable in a method?..

Answer / muthusenthil

No, you can declare static variable only in static method

Is This Answer Correct ?    6 Yes 19 No

Can you declare a static variable in a method?..

Answer / aditya mohata

ya.

Is This Answer Correct ?    3 Yes 28 No

Post New Answer

More Core Java Interview Questions

Can I uninstall java?

0 Answers  


What java is used for?

0 Answers  


What is “try and catch” in java

5 Answers   Cap Gemini, TCS,


What is the return type of readLine() when end of a file is reached?

2 Answers  


What is regex java?

0 Answers  


What is parsing and its types?

0 Answers  


How do you identify if jvm is 32-bit or 64-bit from java program?

0 Answers  


What is singleton class and how can we make a class singleton?

0 Answers  


How do you create a reference in java?

0 Answers  


Is it compulsory to have atleast one abstract method in abstract class?

10 Answers  


How do you define a variable?

0 Answers  


What is unicode used for?

0 Answers  


Categories