aspose file tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes Doubt about protected Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "Doubt about protected" Watch "Doubt about protected" New topic
Author

Doubt about protected

Xiao Song
Greenhorn

Joined: Aug 29, 2006
Posts: 17


After compile, it said "i has protected access in p1.A" in line 15.
Why, B is subclass of A, and member i in A is protected. in my opinion, subclss can access protected member of baseclass.
[ November 21, 2006: Message edited by: Barry Gaunt ]

scjping.......
Prabhu Venkatachalam
Ranch Hand

Joined: Nov 16, 2005
Posts: 502

you are correct, subclass can all the protected memebers of superclass, but only through inheritance and not through object reference, If package of subclass is different from superclass.

This should work,


public class B extends p1.A
{
public void process(A a)
{
i = i*2;
}
....


Prabhu Venkatachalam<br />SCJP 1.4,SCWCD 1.4<br />prabhu.venkatachalam@gmail.com
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Doubt about protected
 
Similar Threads
protected access from different package
jq+ Question ID :957672686580
protected variable?
why compile time error???
Method parameter