イントロ:
入れ子になったクラスは、外部クラスとは少し異なる方法で他のクラスに関連付けられます。Javaを例にとります:
非静的なネストされたクラスは、それらがプライベートとして宣言されている場合でも、囲んでいるクラスの他のメンバーにアクセスできます。また、静的でないネストされたクラスでは、親クラスのインスタンスをインスタンス化する必要があります。
OuterClass outerObj = new OuterClass(arguments);
outerObj.InnerClass innerObj = outerObj.new InnerClass(arguments);
それらを使用する理由はいくつかあります:
- 1つの場所でのみ使用されるクラスを論理的にグループ化する方法です。
クラスが他の1つのクラスだけに役立つ場合は、そのクラスに関連付けて埋め込み、2つをまとめることが論理的です。
2つのトップレベルのクラスAとBについて考えます。Bは、そうでなければプライベートとして宣言されるAのメンバーにアクセスする必要があります。クラスA内でクラスBを非表示にすることで、Aのメンバーをプライベートに宣言し、Bがそれらにアクセスできるようになります。さらに、B自体を外部の世界から隠すことができます。
- ネストされたクラスを使用すると、コードが読みやすく、保守しやすくなります。
ネストされたクラスは通常、その親クラスに関連し、一緒に「パッケージ」を形成します
PHPでは
あなたは同様のものを持つことができますネストされたクラスがなく、PHPで動作を行うます。
Package.OuterClass.InnerClassのように、達成したいすべてが構造/組織である場合、PHP名前空間で十分です。同じファイルで複数の名前空間を宣言することもできます(ただし、標準のオートロード機能のため、お勧めできない場合があります)。
namespace;
class OuterClass {}
namespace OuterClass;
class InnerClass {}
メンバーの可視性などの他の特性をエミュレートしたい場合は、もう少し手間がかかります。
「パッケージ」クラスの定義
namespace {
class Package {
/* protect constructor so that objects can't be instantiated from outside
* Since all classes inherit from Package class, they can instantiate eachother
* simulating protected InnerClasses
*/
protected function __construct() {}
/* This magic method is called everytime an inaccessible method is called
* (either by visibility contrains or it doesn't exist)
* Here we are simulating shared protected methods across "package" classes
* This method is inherited by all child classes of Package
*/
public function __call($method, $args) {
//class name
$class = get_class($this);
/* we check if a method exists, if not we throw an exception
* similar to the default error
*/
if (method_exists($this, $method)) {
/* The method exists so now we want to know if the
* caller is a child of our Package class. If not we throw an exception
* Note: This is a kind of a dirty way of finding out who's
* calling the method by using debug_backtrace and reflection
*/
$trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 3);
if (isset($trace[2])) {
$ref = new ReflectionClass($trace[2]['class']);
if ($ref->isSubclassOf(__CLASS__)) {
return $this->$method($args);
}
}
throw new \Exception("Call to private method $class::$method()");
} else {
throw new \Exception("Call to undefined method $class::$method()");
}
}
}
}
使用事例
namespace Package {
class MyParent extends \Package {
public $publicChild;
protected $protectedChild;
public function __construct() {
//instantiate public child inside parent
$this->publicChild = new \Package\MyParent\PublicChild();
//instantiate protected child inside parent
$this->protectedChild = new \Package\MyParent\ProtectedChild();
}
public function test() {
echo "Call from parent -> ";
$this->publicChild->protectedMethod();
$this->protectedChild->protectedMethod();
echo "<br>Siblings<br>";
$this->publicChild->callSibling($this->protectedChild);
}
}
}
namespace Package\MyParent
{
class PublicChild extends \Package {
//Makes the constructor public, hence callable from outside
public function __construct() {}
protected function protectedMethod() {
echo "I'm ".get_class($this)." protected method<br>";
}
protected function callSibling($sibling) {
echo "Call from " . get_class($this) . " -> ";
$sibling->protectedMethod();
}
}
class ProtectedChild extends \Package {
protected function protectedMethod() {
echo "I'm ".get_class($this)." protected method<br>";
}
protected function callSibling($sibling) {
echo "Call from " . get_class($this) . " -> ";
$sibling->protectedMethod();
}
}
}
テスト中
$parent = new Package\MyParent();
$parent->test();
$pubChild = new Package\MyParent\PublicChild();//create new public child (possible)
$protChild = new Package\MyParent\ProtectedChild(); //create new protected child (ERROR)
出力:
Call from parent -> I'm Package protected method
I'm Package protected method
Siblings
Call from Package -> I'm Package protected method
Fatal error: Call to protected Package::__construct() from invalid context
注意:
PHPでinnerClassesをエミュレートしようとすることは、あまり良い考えではないと思います。私はコードがよりクリーンで読みにくいと思います。また、Observer、Decorator、またはCompositionパターンなどの確立されたパターンを使用して同様の結果を達成する他の方法がおそらくあります。単純な継承で十分な場合もあります。