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...

What is static variable and static method?

Answer Posted / aditya

static variables are class variables.They are globally
declared with the keyword "static".They can be intialised at
the declaration time (or) they can be initialised in static
block.They can accessed by using thier class name
(class name.static variable name).Static variables can also
be accessed by the obj name but to make the difference
between the instance variables and static variables they are
accessed using class name outside the class.Static methods
are the methods that can access only static variables,they
can access instance variables also but only through the
object of the instance variables not directly.Their values
are stored in heap memory.Any changes to the static
variables reflect in heap memory.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does business logic mean?

986


What are the major drawbacks of external iteration?

1057


What are encapsulation, inheritance and polymorphism?

1004


What is the finalize method do?

1095


Explain java coding standards for classes or java coding conventions for classes?

1121


make a method which any number and any type of argument and print sum of that arguments.....

1808


What are the two types of exceptions in java? Which are the differences between them?

1089


What is classpath?

1005


What is method overloading in JAVA? Why is it not present in C ?

1099


What does super keyword do?

1070


Explain covariant method overriding in java.

1101


Explain reverse a linked list iterative solution in java?

919


Can we use this () and super () in a method?

972


How many threads can I run java?

1110


how is final different from finally and finalize in java?

1050