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


Why non nested classes in java are not having marked as
protected access specifier

Answers were Sorted based on User's Feedback



Why non nested classes in java are not having marked as protected access specifier..

Answer / udita bose

Sorry, but previous answer by Yayati Pavan does not answer the question. If that answer is true then there should not be a problem with a "protected" class, as "protected" keyword is wider than default one.

There are no protected class because it is unnecessary to have them. Access modifiers for classes determine 2 things

i) If a class can create instance of other class ?
ii)If a class can extend other class ?

Now, any class within the same package will be able to create an instance of "protected" class - this is true for default-accessor and public classes. No class outside the package will be able to create an instance of "protected" class - this holds good for default-accessor classes.

Again, for a "protected" class by its definition will be extendible by any class within its package - so is default-accessor class, and extendible for any class outside its package - so are all public classes.

Both of this reason nullifies the reason for a protected class.

Is This Answer Correct ?    2 Yes 1 No

Why non nested classes in java are not having marked as protected access specifier..

Answer / yayati pavan

When the non nested class declared as public or
default(public) the jvm can access the class and execute.
So non nested class must always public. other wise jvm can't
access the class.

Is This Answer Correct ?    7 Yes 9 No

Post New Answer

More Core Java Interview Questions

Does constructor creates the object ?

0 Answers  


How to pass arraylist to stored procedure in java?

0 Answers  


What is scanner in java?

0 Answers  


What is the difference between integer parseint and integer valueof?

0 Answers  


What is the purpose of nested class in java?

0 Answers  


Is a case study a method or methodology?

0 Answers  


What are serialization and deserialization?

0 Answers  


What is mnemonic code?

0 Answers  


What is a stringbuffer?

0 Answers  


Explain in detail about encapsulation with an example?

4 Answers  


What is static and a non-static inner class?

3 Answers  


Explain what access modifiers can be used for variables?

0 Answers  


Categories