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

Explain implementation and how is it different from conversion?

1055


What is array size in java?

944


What is an exception? difference between Checked and Unchecked exception in Java

995


Is null in java?

984


What is return code?

993


Can we declare array without size in java?

1022


What is the exact difference in between Unicast and Multicast object?

2098


What is cr keyboard?

1218


What is binary search in java?

971


What is meant by class and object in java?

1013


Does java map allow duplicates?

870


Which of the following classes will have more memory allocated?

1003


what do you mean by stream pipelining in java 8? Explain

1007


What state is a thread in when it is executing?

940


What is difference between word and integer?

1061