| 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
|
 |
 |
|
|
subject: Doubt about protected
|
|
|