how to call static method

how to call static method

class A { //some code } class B extends class A { static method() } class C { } //how to access static method() from B to C

View Answers

April 18, 2011 at 10:38 AM

class A {
} 
class B extends A {
    static void method(){
        System.out.println("Static Method!");
    }
    }
    class C {
        public static void main(String[]args){
        B b=new B();
        b.method();
        }
    }









Related Tutorials/Questions & Answers:
how to call static method
how to call static method  class A { //some code } class B extends class A { static method() } class C { } //how to access static method() from B to C
how to call static method
how to call static method  class A { //some code } class B extends class A { static method() } class C { } //how to access static method() from B to C
Advertisements
how to call static method
how to call static method  class A { //some code } class B extends class A { static method() } class C { } //how to access static method() from B to C
how to call static method
how to call static method  class A { //some code } class B extends A { static method() } class C { } //how to access static method() from B to C
how to call static method
how to call static method  class A { //some code } class B extends A { static method() } class C { } //how to access static method() from B to C
how to call static method
how to call static method  class A { //some code } class B extends A { static method() } class C { } //how to access static method() from B to C
How to call java method on Button click in jsp?
How to call java method on Button click in jsp?  How to call java method on Button click in jsp
How to call the run method from another class?
How to call the run method from another class?  Sorry, if this is a stupid question. I would like to find out how to call the run method... AdaugaChitanta.java. If I don't call a method, then I have to run FereastraPrincipala.java again
Static method
Static method  what is a static method?   Have a look at the following link: Java Static Method
static method
static method  Give some absolute examples and definition for static method also
Example of static method
cannot be referenced from a static context. Static method can call only other static... Example of static method      ... a static method and when not to use. If you have a better understanding
how to open one Jframe from main method call
how to open one Jframe from main method call  I have downloaded... the main() method, when i run this Engine.java class game starts running...(containing main() method) Snake.java GameBoard.java PlayGame.java
Static Method in Java
Static Method in Java  Is Overriding Static methods possible in java? If Yes, How
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
Why is the main method declared static?
Why is the main method declared static?  Hi, Why is the main method declared static? thanks   Hi, When we declare main() method in any...(String args[]. The motive of it is that static in JVM can call it directly
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
Java static method
Java static method  Can we override static methods
When will you define a method as static?
When will you define a method as static?  Hi, When will you define a method as static? thanks
Static Method in java with realtime Example
Static Method in java with realtime Example  could you please make me clear with Static Method in java with real-time Example
Static method in java - Java Beginners
Static method in java  What are static method in Java  Hi Friend, Please visit the following link: http://www.roseindia.net/java/beginners/howtoaccessstaticmethod.shtml Hope that it will be helpful for you
javascript call action class method instruts
javascript call action class method instruts  in struts2 onchange event call a method in Actionclass with selected value as parameter how can i do
What are the restriction imposed on a static method or a static block of code?
What are the restriction imposed on a static method or a static block of code?  hi, What are the restriction imposed on a static method or a static block of code? Thanks
Why servletcontainer can,t call the Init() method ?
Why servletcontainer can,t call the Init() method ?  Why servletcontainer can,t call the Init() method
validte method call upon ActionForm creation.
validte method call upon ActionForm creation.  I want to know if validate method is called when ActionForm object is created?   Hi, The validate method is not called when ActionForm object is created.ADS_TO_REPLACE_1
can we inherit static method in java?
can we inherit static method in java?  can we inherit static method in java
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
PHP set static Method
_set_static()Method in PHP : In this tutorial we will study how to assign...() method. We need to declare a magic method called __set_static() which... return the object. ADS_TO_REPLACE_1 PHP Set Static Method Example: <?php
Accessing non-static members through the main method in Java.
Accessing non-static members through the main method in Java.  As an oop rule, a static method can have access only to static variables and static methods. If it is so, an obvious question arises as to how can the main() method
How to call servlet in JSP?
How to call servlet in JSP?  How to call servlet in JSP
how call ireports in jsp
how call ireports in jsp  please send me code any one for calling ireports in servlet-jsp program i am trying to call the ireports in servlet and jsp error is occurred exception: javax.servlet.ServletException
Calling Static Methods Using SpEL
will see how to use static method random() of java.util.Math class to wire random...Calling Static Method Using SpEL Spring 3 provides powerful Expression... to demonstrate how SpEL is used to wire value by calling static  method
STATIC
BETWEEN STATIC BLOCK AND STATIC METHOD?   A STATIC block is automatically... between static block and static method: static block will execute when ever... from static method"); } public static void main(String[] args) { helloMethod
JAVA what is different between static block and public static void main(String a[]) method
void main(String a[]) method,we execute method without main method(by static...() method for various reasons, it coexists with main() method which is static too...JAVA what is different between static block and public static void main(String
Call class methods
Call class methods       This Example shows you how to call class method in velocity...: Use put() method of Class VelocityContext through object 'ctx'. 4: Create
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
how to call jsp from flex
how to call jsp from flex  hi, i want to know that how can i call a FLEX from JSP. . A good Example will be appreciated
how to call jsp from flex
how to call jsp from flex  Plz help me out to get JSP from FLEX.... I need your help.... Thanks for future
how formBackingObject() method will work.
how formBackingObject() method will work.  How the formBackingObject method will behave
Static
Static  Can i know the real time example for Static method and final variables with defenition? Thank you
How to Invoke method using Reflection API of Java?
how to call the "append" method of StringBuffer class using the Java... the specified string to the end of this string. We will show you how to call... is the steps to call the concat method of String class using Reflection framework
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 and accessed each time an instance of a class, an object, is created. When static
how to call a frame having threading concept
how to call a frame having threading concept   i hav a frame having buttton on it .on click event of the button ,i want to call another frame which... frame8 extends JPanel implements ActionListener { public static final int TILED
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 keyword in java
are unique function in java program. In static method we call other static methods only and we do not call a non static method. In static method we can... method, static variable. A static keyword points the following: static
Squaring of two number in Static class
Squaring of two number in Static class       In this section we will learn how to use static method and how can display multiplication of two any number. The static
Static
an instance of a class. Static methods are implicitly final method, since overriding..., rather than attaching to an object. A static method of a subclass can shadow a static method of the superclass, regarding the original method was not declared
How do you call a constructor for a parent class?
How do you call a constructor for a parent class?  How do you call a constructor for a parent class
how to call javascript function from flex
how to call javascript function from flex  how to call javascript function from flex
how to call ejb with in another ejb - EJB
how to call ejb with in another ejb  Does any one have idea about ...how to call ejb with in another ejb
How to call print dialog box through JMenuItem?
How to call print dialog box through JMenuItem?  What is the way to call the print dialog box through JMenuItem to print the current page like we can do in javascript by calling window.print() function

Ads