Home Answers Viewqa Java-Beginners STATIC VARIABLE DECLARATION

 
 


velumekaladevi
STATIC VARIABLE DECLARATION
1 Answer(s)      2 years and 3 months ago
Posted in : Java Beginners

why cannot the static variable declare inside the method

View Answers

February 11, 2011 at 4:22 PM


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 java does not allow static variable to be declared inside a method.









Related Pages:
STATIC VARIABLE DECLARATION
STATIC VARIABLE DECLARATION  why cannot the static variable declare inside the method
variable declaration in c and c++
variable declaration in c and c++  Comparison and an example of variable declaration in C and C
DECLARATION IN JSP
DECLARATION IN JSP In this Section, we will discuss about declaration of variables & method in JSP using declaration tags. Using Declaration Tag, you... declaration with a semicolon. The declaration must be valid in the Java
Static Variable
Static Variable  What is the basic use of introducing static variable type in java?Please explain clearly....   The Static means..., it means that the static variable is shared among all instances of the class
static
static  What is the exact need of declaring a variable as static?   A static variable is a variable who's single copy in memory is shared by all objects,so any modifications to the static variable will modify it's value
static
static  what r the main uses of static in java   Hi Friend, The Static means that a certain object/variable is resident in memory... is applied to member variables, it means that the static variable is shared among all
Declaration tag
Declaration tag   Defined Declaration tag in JSP    Declaration in JSP is way to define global java variable and method. This java variable method in declaration can be access normally. Normally declaration does
static
redeclare static variable in the inherited class  can we redeclare static variable in the inherited class like this: public class StaticClass1...); **//here i have redeclared the static variable as "25" is it possible,then what
static variable in php
static variable in php  How can i call a global variable as a static variable
how to inherit static variable
how to inherit static variable   how to inherit static variable or methods in Java?? Please explain the entire process of inheriting the variable. Thanks in advance
What is the importance of static variable?
What is the importance of static variable?  hi, What is the importance of static variable? thanks
Serialize the static variable
Serialize the static variable  hello, Can we serialize the static variable?   hii Yes we can serialize the static variable. if u don't want to serialize, u need to declare the variable as transient
JSP Declaration
JSP Declaration  What is a JSP Declaration?. Explain it.   Hi, The answer is: The JSP declaration used to craete one or more variable and methods that are used later in the jsp file. If you want to create variable
Static keyword in public static void main
example for this?   The static variable is declared by using static keyword. Following is an example of static declaration: static int i=10; The variable declared with static keyword is called class variable. This variable
Static variable in java
Static variable in java. Static is a keyword in java used to create static methods, variable inside a class and static class. Static variable is also called class variable which belongs to class not to object. Static
Can we declare a static variable inside a method?
Can we declare a static variable inside a method?   Hi, Can we declare a static variable inside a method? thanks
non static variable cannot be referenced from static context
non static variable cannot be referenced from static context  public... "non static variable cannot be referenced from static context". How to solve... public static void main(String []s){ Add a1=new Add(); a1.add(7,8
non static variable cannot be referenced from static context
non static variable cannot be referenced from static context  public class Add{ int foo=7; int bar=8; public int add(int x,int y... public static void main(String []s){ Add a1=new Add(); a1.add(7,8
PHP Static Variable and Methods
PHP Static Methods and Variables: In this tutorial we will study when we should use static methods and variables. Static keyword is used to make only one copy of the variable for the class. All objects of that class will access one copy
Java static method example
Description: Static variable are used within the static method. Non static variable do not exits in the static method. Static variables are shared by its class instances. Static variable can be used without using the instances
Array Declaration
Array Declaration     ... that helps you in Understanding Array Declaration. For this we are using JavaScript... that include variable array, that is used to instantiate an array object
Example of a class variable (static variable)
Example of a class variable (static variable)   ... you can define the static class variable in a class. When a number of objects... of a static variable first of all create a class StaticVariable. Define one static
Java Array Declaration
Java Array Declaration       As we declare a variable in Java, An Array variable is declared the same way. Array variable has a type and a valid Java identifier i.e. the array's
static functions
)It is a variable which belongs to the class and not to object(instance). 2)Static...)A single copy to be shared by all instances of the class. 4)A static variable can...static functions  Give some brief defenition for 1. Static Variables
static keyword
instances of the class. 4)A static variable can be accessed directly by the class name...static keyword  please give some detail about Static keyword.   Static Variables Static variables are class variables that are shared
Creating a Local Variable in JSP
or variable we usually declare it inside the declaration tag. If we declare it inside the declaration directive then then the scope of the variables...Creating a Local Variable in JSP     
Coding Issues
Java: Coding Issues Multiple variables in one declaration int... declaration is generally not the best style. Some code reformaters will try to fill out the line with all the declarations. Documenting each variable is more
private static final
private static final  Why there is necessary to make a variable private static final
Creating a Local Variable in JSP
Creating a Local Variable in JSP      In jsp when we have to create a method or variable we usually declare it inside the declaration tag. If we declare it inside the declaration directive
PHP Variables Static
PHP Variables Static PHP static variable is used to remember the value... is running a static variable is only retained by the function , but it is NOT shared.... If you noticed, we mentioned static statement before the $text variable within
Static Method in PHP - PHP
Static Method in PHP  So far I can easily use the normal functions as variable in PHP? but how can use static method?  Hi Friend, Please...-static-variable-method.html Thanks
static & instance - Java Beginners
static & instance  what is different between static variable and instance variable .? plz explain with example. and when we can use static variable and when can use instance variable.    public class Main
static object array
static object array  static object array   Dynamically call a static variable array class Blog { public static $template = array('content' => 'doodle'); } Blog::$template['content'] = 'bubble'; $class = 'Blog
Example of a instance variable
variable in a main method. If we try to call the non-static method in the main method then the compiler will prompt you that non-static variable cannot be referenced from a static context. We can call the non-static variable by the instance
Variable Names
Java Notes Variable Names Basic variable naming conventions Choosing good names is probably..., these variable naming conventions are almost always used. Here is what
STATIC
STATIC  WHAT IS STATIC BLOCK?EXPLAIN , AND WHAT IS THE DIFFERENCE BETWEEN STATIC BLOCK AND STATIC METHOD?   A STATIC block is automatically... between static block and static method: static block will execute when ever
static
Static Concept  in what are all the situation we may use static...,then use static blocks and without creation of object we need to perform some task,then go for static methods. If we want variables those values will not be changed
Static
Static  Can i know the real time example for Static method and final variables with defenition? Thank you
Static final variables - Java Beginners
Static final variables  can a static final variable be accessed by a instance (non-static)method?  Hi, static final variable u can access in non-static method. but the variable should has accessibility, means
array declaration
array declaration  what is the difference between declaration of these two things integer[] i={1,2,3,4,5} and integer i[]={1,2,3,4,5
Declare Reference variable
variable static int b; // static variable A ref; static A refs; public static void main(String[] args) { // statements... in memory when object is created. Static variable is class variable which
How to declare a Combobox without using a string in its declaration?
How to declare a Combobox without using a string in its declaration?  What i mean to ask is how can i declare a combobox first and initialise... java.awt.event.*; public class DynamicCombobox { public static void main(final String args
array declaration
array declaration  String propArray = []; is this declaration correct?   Hi Friend, No, This is the wrong way. Array is declared in the following way: String arr[]={}; For more more information, visit the following
What is a transient variable?
What is a transient variable?   Hi, What is a transient variable? Thanks,   Hi, Any variable which is altered(modified) with transient keyword becomes transient variable in java. It will be beneficiary
Store Variable in Java
Store Variable in Java  How to store Variables in Java?   public class DoubleTest { public static void main(String[] args) { double...(aDouble); // Outputs 7.21 } }   Variable in Java
about static import - Java Beginners
about static import  Hello Friend below program is not running when... i compile B.class it is showing the compile time error on variable i. i want to ask that "static import" syntax is correct or not package mypackage1
Example of static method
an instance of the class. If you try to use a non-static method and variable defined in this class then the compiler will say that non-static variable or method... variable and other is class variable. Make one static method named staticMethod
static Java Keyword
;; Example to use the static keyword with a variable and with a constant... static Java Keyword       The static is a keyword defined in the java programming language. Keywords
PHP Variable
;This is a string value";//declaration as string variable echo "Value of \$var...;; $var=23.23;//declaration as float variable echo "Value of \$var... Value";//declaration as string variable echo "With '\' sign

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.