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

can we create object for static class in java

Answer Posted / goldy

When you have to access any member of a class, you have to
create an instance of the class

Ex:- class NewClass
{
int member1;

int member2(){ }
}

create an instance
of the "NewClass" class in any class you want to
access the members.

ex:

class OtherClass{

member1;
member2; ....

OtherClass instanceOfOtherClass= new NewClass();
// instanceOfOtherClass ---> is object
}


if you declare a class as static there is no need to
create the instance ( so called object)

you can directly call the members by

class name


if NewClass were static

"NewClass.member1;"


is it clear

Is This Answer Correct ?    15 Yes 15 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How dead lock situation occurs in java and how you can identify it?

940


What is the largest data type in java?

922


why are wait(), notify() and notifyall() methods defined in the object class? : Java thread

931


What is an association?

938


What is the difference between a factory and abstract factory pattern?

1082


Is 0 an even number?

927


What are inbuilt functions in java?

992


Why is stringbuffer thread safe?

1002


Break statement can be used as labels in java?

943


What is finalize() function in java?

954


What is the difference between import java.util.date and java .util?

1002


What is ph and buffers?

936


Can a lock be acquired on a class in java programming?

922


What is sorting algorithm in java?

991


Is it possible to instantiate the abstract class?

910