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


Explain the differences between public, private, protected
and static?

Answers were Sorted based on User's Feedback



Explain the differences between public, private, protected and static?..

Answer / ranganathkini

Members marked public are accessible to members of any class
irrespective of the package.

Members marked private are only accessible to other members
of the same class.

Members marked protected are only accessible to other
members of the same class, members of a subclass and members
of other classes in the same package.

Member marked static are shared by all instances of that
class and hence r not related to any specific instance of
that class. Methods marked static cannot access non-static
members or fields of that class. But non-static members can
access static fields or methods.

Is This Answer Correct ?    111 Yes 21 No

Explain the differences between public, private, protected and static?..

Answer / ankit porwal

public: &#9835;
a method or field defined by public is accessible by all
other methods and fields of that program anywhere.
private: &#9835;
u can't access the private members or methods outside the
class they are only accessible inside the class.
eg: if u have "org.iitk.ankit.abc.java;" and another file in
the package "org.iitk.ankit.xyz.java;".
in this case u can't access the private methods of abc.java
class in the xyz.java file's calsses.
protected: &#9835;
in case of protected u can access the protected members in
the same package but can't access outside that package.
eg: means u can access members of abc.java in xvz.java.
b'coz they are in the same directory.
but not accessible in iitk directories files.
for more detail contact me at
email: crystal.brawal@gmail.com

Is This Answer Correct ?    24 Yes 11 No

Explain the differences between public, private, protected and static?..

Answer / quins welfred

this is not true in all cases.

Is This Answer Correct ?    19 Yes 19 No

Explain the differences between public, private, protected and static?..

Answer / manne ranjith

public-->inherite the protected members as preotected in
drived class and pubic members wiull be public in derived
class

protected--->pubic and protecated members of the base class
will become protected in derived class

Private-->pubilc and proteacted members will become private
in derived class

static--->Method is defined by static cannot access non-static
members or fields of that class. But non-static members can
access static fields or methods.

Is This Answer Correct ?    28 Yes 32 No

Post New Answer

More Core Java Interview Questions

Does constructor return any value?

0 Answers  


what is the logic inside any default constuctor?

2 Answers  


What happens when a thread cannot acquire a lock on an object in java programming?

0 Answers  


What is compile time polymorphism?

20 Answers   CTS, Elementus Technologies, Oracle,


What is var keyword ?

0 Answers   Wipro,


What is the top class of AWT event hierarchy?

5 Answers  


explain the difference between jdk and jvm?

0 Answers  


what is Remote Reference Layer ?

1 Answers  


Why java is not 100% object-oriented?

1 Answers  


Explain java code for recursive solution's base case?

0 Answers  


How we can generate random numbers in java?

0 Answers  


Where local and global variables are stored?

0 Answers  


Categories