static in java

static in java

what is the need to go static? what use?

View Answers

April 9, 2013 at 12:45 PM

Hi,

In Java term Static means one per class, not one for each object no matter how many instance of a class might exist. A static method in a superclass can be shadowed by another static method is a subclass, as long as the original method was not declared final. I have find a resourceful reference link for What is Static in Java?


June 5, 2012 at 9:06 PM

if you declare a method static then u donot have to create a object of class to call it . u can directly call it by new classname.methodname(); other wise u have to create a object for it.









Related Tutorials/Questions & Answers:
static in java
static in java  what is the need to go static? what use
Java static import
Java static import  What is the use of static import
Advertisements
Java static method
Java static method  Can we override static methods
Static & Instance variables in java
Static & Instance variables in java  What are the Difference between Static & Instance variables in java
Static Method in Java
Static Method in Java  Is Overriding Static methods possible in java? If Yes, How
class static - Java Beginners
information on Static in Java visit to : http://www.roseindia.net/java/beginners...class static  When do we declare a member of a class static?  Hi friend, public class HowToAccessStaticMethod{ int i; static int j
static
is why if you declare the function main as static then java does not have...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
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... the following link: http://www.roseindia.net/help/java/s/static-java-keyword.shtml
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 & 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... { private static int noOfObjects; private int count; public Main
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
core java, static - Java Beginners
core java, static  Dear sir, in java non-static fields can not be accessed in a static field. But if we create an object of class type in static field and then call non-static field in it, it works fine as in following program
static keyword in java
.style1 { color: #0000FF; } static keyword in java We are going to discuss about static keyword in java. The static keyword is a special keyword in java programming language. A static member belongs to a class
Static
Static  Can i know the real time example for Static method and final variables with defenition? Thank you
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
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 Java Keyword
static Java Keyword       The static is a keyword defined in the java programming language. Keywords... in java programming language likewise the static keyword indicates the following
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
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
about static import - Java Beginners
about static import  Hello Friend below program is not running when... to ask that "static import" syntax is correct or not package mypackage1... A { protected static int i=5; } package mypackage2; import static mypackage1.A.
can we inherit static method in java?
can we inherit static method in java?  can we inherit static method in java
Why doesn't Java allow overriding of static methods?
Why doesn't Java allow overriding of static methods?  Why doesn't Java allow overriding of static methods
Java inner class and static nested class
Java inner class and static nested class  Java inner class and static nested class
what is static synchronizes - Java Interview Questions
what is static synchronizes   what is static method...://www.roseindia.net/java/java-methods/java-method-synchronized.shtml http://www.roseindia.net/java/thread/synchronization.shtml Thanks
JAVA what is different between static block and public static void main(String a[]) method
JAVA what is different between static block and public static void main(String a[]) method  what is different between static block and public static void main(String a[]) method,we execute method without main method(by static
static code problem - Java Interview Questions
static code problem  do we overload or override static methods... and override static methods but only with static methods. For ex. public class AB { public static void main(String args[]) { method(); method(8
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
Static method
Static method  what is a static method?   Have a look at the following link: Java Static Method
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... in Java has access to non-static members (variables or methods) even though
static functions
. For more information, visit the following links: Java Static Variables Java Instance Variables Java Static Method   Static Variables Static variables..., visit the following links: Java Static Variables Java Instance Variables
static keyword
static keyword  Hii, In which portion of memory static variables stored in java. Is it take memory at compile time? thanks deepak mishra
Static Variable
Static Variable  What is the basic use of introducing static variable type in java?Please explain clearly....   The Static means...://www.roseindia.net/help/java/s/static-java-keyword.shtml
Static
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 method
static method  Give some absolute examples and definition for static method also
static methods
static methods  why static methods cannot read or write the instance variables
static keyword
static keyword  please give some detail about Static keyword.   Static Variables Static variables are class variables that are shared... and not to object(instance). 2)Static variables are initialized only once , at the start
Maven dependency for net.n2oapp.context - static-context version 7.12.2 is released. Learn to use static-context version 7.12.2 in Maven based Java projects
to use  net.n2oapp.context - static-context version 7.12.2 in Java projects... and includes  net.n2oapp.context - static-context version 7.12.2 java library...Maven dependency for  net.n2oapp.context  - Version 7.12.2 of static
Maven dependency for net.n2oapp.context - static-context version 7.12.3 is released. Learn to use static-context version 7.12.3 in Maven based Java projects
to use  net.n2oapp.context - static-context version 7.12.3 in Java projects... and includes  net.n2oapp.context - static-context version 7.12.3 java library...Maven dependency for  net.n2oapp.context  - Version 7.12.3 of static
Maven dependency for net.n2oapp.context - static-context version 7.12.4 is released. Learn to use static-context version 7.12.4 in Maven based Java projects
to use  net.n2oapp.context - static-context version 7.12.4 in Java projects... and includes  net.n2oapp.context - static-context version 7.12.4 java library...Maven dependency for  net.n2oapp.context  - Version 7.12.4 of static
Maven dependency for net.n2oapp.context - static-context version 7.12.5 is released. Learn to use static-context version 7.12.5 in Maven based Java projects
to use  net.n2oapp.context - static-context version 7.12.5 in Java projects... and includes  net.n2oapp.context - static-context version 7.12.5 java library...Maven dependency for  net.n2oapp.context  - Version 7.12.5 of static
Maven dependency for net.n2oapp.context - static-context version 7.12.6 is released. Learn to use static-context version 7.12.6 in Maven based Java projects
to use  net.n2oapp.context - static-context version 7.12.6 in Java projects... and includes  net.n2oapp.context - static-context version 7.12.6 java library...Maven dependency for  net.n2oapp.context  - Version 7.12.6 of static
Maven dependency for net.n2oapp.context - static-context version 7.12.7 is released. Learn to use static-context version 7.12.7 in Maven based Java projects
to use  net.n2oapp.context - static-context version 7.12.7 in Java projects... and includes  net.n2oapp.context - static-context version 7.12.7 java library...Maven dependency for  net.n2oapp.context  - Version 7.12.7 of static
Maven dependency for net.n2oapp.context - static-context version 7.12.8 is released. Learn to use static-context version 7.12.8 in Maven based Java projects
to use  net.n2oapp.context - static-context version 7.12.8 in Java projects... and includes  net.n2oapp.context - static-context version 7.12.8 java library...Maven dependency for  net.n2oapp.context  - Version 7.12.8 of static
Maven dependency for net.n2oapp.context - static-context version 7.12.9 is released. Learn to use static-context version 7.12.9 in Maven based Java projects
to use  net.n2oapp.context - static-context version 7.12.9 in Java projects... and includes  net.n2oapp.context - static-context version 7.12.9 java library...Maven dependency for  net.n2oapp.context  - Version 7.12.9 of static
Maven dependency for net.n2oapp.context - static-context version 7.12.10 is released. Learn to use static-context version 7.12.10 in Maven based Java projects
to use  net.n2oapp.context - static-context version 7.12.10 in Java... and includes  net.n2oapp.context - static-context version 7.12.10 java... of static-context released The developers of   net.n2oapp.context - static
Maven dependency for net.n2oapp.context - static-context version 7.12.11 is released. Learn to use static-context version 7.12.11 in Maven based Java projects
to use  net.n2oapp.context - static-context version 7.12.11 in Java... and includes  net.n2oapp.context - static-context version 7.12.11 java... of static-context released The developers of   net.n2oapp.context - static
Maven dependency for net.n2oapp.context - static-context version 7.12.12 is released. Learn to use static-context version 7.12.12 in Maven based Java projects
to use  net.n2oapp.context - static-context version 7.12.12 in Java... and includes  net.n2oapp.context - static-context version 7.12.12 java... of static-context released The developers of   net.n2oapp.context - static
Maven dependency for net.n2oapp.context - static-context version 7.12.13 is released. Learn to use static-context version 7.12.13 in Maven based Java projects
to use  net.n2oapp.context - static-context version 7.12.13 in Java... and includes  net.n2oapp.context - static-context version 7.12.13 java... of static-context released The developers of   net.n2oapp.context - static
Maven dependency for net.n2oapp.context - static-context version 7.12.14 is released. Learn to use static-context version 7.12.14 in Maven based Java projects
to use  net.n2oapp.context - static-context version 7.12.14 in Java... and includes  net.n2oapp.context - static-context version 7.12.14 java... of static-context released The developers of   net.n2oapp.context - static

Ads