Re: Separate interface and implemenation problem..
MRe wrote:
////// TreeNode.java //////
public interface TreeNode
{
public void setParent(TreeNode parentNode);
}
////// TreeNodeImpl.java //////
class TreeNodeImpl implements TreeNode
{
public void setParent(TreeNode parentNode)
{
// problem here: cannot find symbol addChild(TreeNodeImpl)
parentNode.addChild(this);
Right. There is no reason to believe that a TreeNode
has an addChild() method; the only methods you can be sure
a TreeNode has are setParent() and the things inherited
from Object. Possible remedies:
- Include an addChild() method in the TreeNode
interface definition.
It would be nice if Java allowed protected (or private) modifiers
inside an interface [why doesn't it?]
Because they'd either (1) be useless, (2) break the access
model, or (3) postpone access errors to run-time:
(1) You can access a class' private elements only from the
class' own code. Since the TreeNodeImpl class is not
part of the TreeNode "class," it would be unable to
access private elements of that "class."
(2) If TreeNode had a private abstract method that every
implementing class had to provide, TreeNodeImpl's
supposedly-private methods would be exposed to any
other class implementing TreeNode. So much for privacy.
(3) To remedy (2) we might allow TreeNodeImpl to attempt to
access a private element of TreeNode, adding a run-time
check that throws an exception if the TreeNode turns out
to be something other than a TreeNodeImpl instance. This
defeats the static type-checking that you say (snipped)
you favor.
return TreeNodeImpl();
I guess you mean `new TreeNodeImpl()'.
Ha, yes. I always forget to type that operator. Why is it even in the
language; when is the class constructor ever referenced, except after
new?
By super(), explicitly or implicitly, or by this(). If
you'd prefer factory methods, you know how to write them.
--
Eric.Sosman@sun.com