redeclare static variable in the inherited class

redeclare static variable in the inherited class

can we redeclare static variable in the inherited class like this:

public class StaticClass1 {

 class StaticClass1{

    static int noOfInstances;

    StaticClass1(){

        noOfInstances++;

    }

}

 class StaticClass extends StaticClass1

{   public static void main(String[] args){

        StaticClass1 sv1 = new StaticClass1();

        System.out.println("No. of instances for sv1 : " + sv1.noOfInstances);

        StaticClass1 sv2 = new StaticClass1();

        System.out.println("No. of instances for sv1 : "  + sv1.noOfInstances);

        System.out.println("No. of instances for st2 : "  + sv2.noOfInstances);

        StaticClass1 sv3 = new StaticClass1();

        System.out.println("No. of instances for sv1 : "  + sv1.noOfInstances);

        System.out.println("No. of instances for sv2 : "  + sv2.noOfInstances);

        System.out.println("No. of instances for sv3 : "  + sv3.noOfInstances);

                **//here i have redeclared the static variable as "25" is it possible,then what is static variable**

                noOfInstances=25;


        StaticClass1 sv4 = new StaticClass1();

        System.out.println("No. of instances for sv1 : "  + sv1.noOfInstances);

        System.out.println("No. of instances for sv2 : "  + sv2.noOfInstances);

        System.out.println("No. of instances for sv3 : "  + sv3.noOfInstances);

        System.out.println("No. of instances for sv4 : "  + sv4.noOfInstances);

        StaticClass1 sv5 = new StaticClass1();

        System.out.println("No. of instances for sv1 : "  + sv1.noOfInstances);
        System.out.println("No. of instances for sv2 : "  + sv2.noOfInstances);
        System.out.println("No. of instances for sv3 : "  + sv3.noOfInstances);
        System.out.println("No. of instances for sv3 : "  + sv4.noOfInstances);
        System.out.println("No. of instances for sv3 : "  + sv5.noOfInstances);
    }

}


//}
View Answers









Related Tutorials/Questions & Answers:
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... To see the use of a static variable first of all create a class StaticVariable
Static variable in java
methods, variable inside a class and static class. Static variable is also called class variable which belongs to class not to object. Static.... Static variable is accessed without creating object of class using class name
Advertisements
Static Variable
of a class, an object, is created. When static is applied to member variables, it means that the static variable is shared among all instances of the class...Static Variable  What is the basic use of introducing static variable
static
redeclare static variable in the inherited class  can we redeclare static variable in the inherited class like this: public class StaticClass1 { class StaticClass1{ static int noOfInstances; StaticClass1
static variable in php
static variable in php  How can i call a global variable as a static variable
STATIC VARIABLE DECLARATION
STATIC VARIABLE DECLARATION  why cannot the static variable declare inside the method
What is the importance of static variable?
What is the importance of static variable?  hi, What is the importance of static variable? thanks
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
Serialize the static variable
Serialize the static variable  hello, Can we serialize the static variable?   hiiADS_TO_REPLACE_1 Yes we can serialize the static variable. if u don't want to serialize, u need to declare the variable as transient
PHP Static Variable and Methods
copy of the variable for the class. All objects of that class will access one copy.... Example of PHP Static Variables & Methods : <?phpADS_TO_REPLACE_2 class...PHP Static Methods and Variables: In this tutorial we will study when we
Private variable of class
Private variable of class  Hi..... What keyword allows you to refer to private variables of a class in flex? Please give me an example for that Thanks  Ans: private keyword and this keyword
how to pass class variable to another class
how to pass class variable to another class  i need to access a variable from a class to another class currently running at the same time. using..._TO_REPLACE_1 Try the following code: import java.util.*; class A { static int regd
About Static Class
About Static Class  is it neccessary to create object for static class
What is a local, member and a class variable?
What is a local, member and a class variable?   Hi, What is a local, member and a class variable? thanks
Can a class be declared as static?
Can a class be declared as static?  Hi, Can a class be declared as static? thanks
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... "non static variable cannot be referenced from static context". How to solve
class static - Java Beginners
class static  When do we declare a member of a class static?  Hi friend, public class HowToAccessStaticMethod{ int i; static int j; public static void staticMethod(){ System.out.println("you can access
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
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
Java inner class and static nested class
Java inner class and static nested class  Java inner class and static nested class
Difference between the local and class variable.
Description: The class variable are declared in the class but not within methods of any class. Whereas the local variable exits within the methods of any... between the class and local variable. Showing Local Variable
static keyword in java
. In a static variable we can directly access the class name and do not need any object... method and static variable class StaticTest { int x; //initialized to zero... keyword in java programming language. A static member belongs to a class
Static database class - JSP-Servlet
Static database class  I want to create a static database class and i want to use that class in all servlets ? How can i achive
What is the difference between a static and a non-static inner class?
What is the difference between a static and a non-static inner class?   Hi, What is the difference between a static and a non-static inner class? Thanks
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
ModuleNotFoundError: No module named 'django-static-class-minifier'
ModuleNotFoundError: No module named 'django-static-class-minifier'  ...: No module named 'django-static-class-minifier' How to remove the ModuleNotFoundError: No module named 'django-static-class-minifier' error
how to set the class path variable in tomcat ?
how to set the class path variable in tomcat ?  description... for the useBean class attribute action.TestBean is invalid...;jsp:useBean id="test" class="action.TestBean" /> <jsp:setProperty name
How to pass variable from one class to another in java
How to pass variable from one class to another in java  How to pass variable from one class to another in java?   Example: public class...; } } //Another class Class2. public class Class2 { public static void main(String
What happens to the static fields of a class during serialization?
What happens to the static fields of a class during serialization?   What happens to the static fields of a class during serialization?   .... These are Serialization ignores static fields, because they are not part of any particular state
Assigning a value to JSP variable from a bean class. - JSP-Servlet
Assigning a value to JSP variable from a bean class.  Hi, I want to know how we can assign value to a JSP variable from a Java Bean. I am using Struts, JSTL. Which tags should I use to assign the value. e.g Kindly
Access Static Member Of The Class Through Object
Access Static Member Of The Class Through Object  ... that work without any object of the class. Static methods are limited to calling other static methods in the class and to using only static variables
static
, The Static means that a certain object/variable is resident in memory and accessed each time an instance of a class, an object, is created. When static is applied to member variables, it means that the static variable is shared among all
Instance variable in java
Variable class/static variable Instance variable : ADS_TO_REPLACE_2 Instance variable are declared in a class but outside method or constructor... variable are used by all method of a class unless method is marked as static
Squaring of two number in Static class
Squaring of two number in Static class  ...; . To square a static method  are define main class and passing the two... static method and how can display multiplication of two any number. The static
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
Example of a instance variable
class,  the same copy of  instance variable is provided to all... we have used in the constructor of a class. We can't call the non-static variable in a main method. If we try to call the non-static method in the main
Using Abstract Class
class. This class must be inherited. Unlike interface the abstract class may... but we can call its static method by its class name. The code...Using Abstract Class      
how to pass variable from simple java main class(not servlet) to the jsp page?
how to pass variable from simple java main class(not servlet) to the jsp page?  I have a simple Java class in which I invoke a call to a JSP page... from the simple Java class to the JSP page. How can I do that? Here is my
STATIC
is an example: public class StaticTest { static{ System.out.println("Hello from...STATIC  WHAT IS STATIC BLOCK?EXPLAIN , AND WHAT IS THE DIFFERENCE BETWEEN STATIC BLOCK AND STATIC METHOD?   A STATIC block is automatically
Static Nested Classes
; A nested class that is declared static is called a static nested class... independently of any particular outer class object. A static nested class use... an object reference. A static nested class interacts with the instance
static
instance of that object (the object that is declared static) in the class... of the class that is initialized. Another thing about static objects is that you...Static Concept  in what are all the situation we may use static
Static
an instance of a class. Static methods are implicitly final method, since overriding depends on the type of the object, and static methods are attached to a class... Static       Static
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... variables. 3)A single copy to be shared by all instances of the class. 4)A static
Declare Reference variable
in memory when object is created. Static variable is class variable which... variable static int b; // static variable A ref; static... of object creation, but here i am declaring reference variable in class
Local Variable and Instant Variable
Local Variable and Instant Variable  difference between Local Variable and Instant Variable   Difference between local variable and instance variable Instance variable is declared within a class but not within
PHP Variables Static
PHP Variables Static PHP static variable is used to remember the value of a local variable when we call the function in our program. While your script is running a static variable is only retained by the function , but it is NOT shared
PHP Variable variables
PHP Variables variable: Variables variable is a new kind of technique of using variables, in this technique we need to use more than one variable and we can... the use of variable variable both in general use as well as in OOP concept. ADS
static keyword
instances of the class. 4)A static variable can be accessed directly by the class name...; Static Variables Static variables are class variables that are shared by all instance of class .. 1)It is a variable which belongs to the class
Static
Static  Can i know the real time example for Static method and final variables with defenition? Thank you
What is final class?
What is final class?  Hi, What is final class? thanks   Hi, A final class is not be saubclassed. A final method can't be overridden when its class is inherited. You can't change value of a final variable

Ads