オブジェクト指向言語のPHPが備えるコンストラクタとデストラクタ

みなさん、こんにちは。第5回目となる今回は、コンストラクタとデストラクタについてお話しします。
コンストラクタ
コンストラクタとは、クラスにおいてオブジェクトが生成された際に実行されるメソッドのことです。コンストラクタの良くある使い方としては、例えばオブジェクト生成時のインスタンス変数の初期化が挙げられます。
construct_1.php
01 | <?php |
02 | class Fruit{ |
03 | private $name = null; |
04 | private $size = null; |
05 | private $price = null; |
06 |
07 | function __construct($name, $size, $price){ |
08 | $this->name = $name; |
09 | $this->size = $size; |
10 | $this->price = $price; |
11 | } |
12 | } |
13 |
14 | $fruit = new Fruit('メロン', '大', '1200円'); |
このような書き方を良く見かけると思います。上記の例では、Fruitインスタンスを生成する時に、名前とサイズと金額をそれぞれ引数として渡し、コンストラクタでインスタンス変数に渡します。その後、それぞれのゲッターメソッドで名前やサイズ、金額を取得できるようにする、というようなクラスの書き方は、一般的に行われています。
construct_2.php
01 | <?php |
02 | class Fruit{ |
03 | private $name = null; |
04 | private $size = null; |
05 | private $price = null; |
06 |
07 | function __construct($name, $size, $price){ |
08 | $this->name = $name; |
09 | $this->size = $size; |
10 | $this->price = $price; |
11 | } |
12 | function getName(){ |
13 | return $this->name; |
14 | } |
15 | function getSize(){ |
16 | return $this->size; |
17 | } |
18 | function getPrice(){ |
19 | return $this->price; |
20 | } |
21 | } |
22 |
23 | $fruit = new Fruit('メロン', '大', '1200円'); |
24 | echo $fruit->getName(); |
出力結果
1 | $ php construct_2.php |
2 | メロン |
上記の例では、「__construct」という名前でコンストラクタを定義しています。クラス名と同じ名前のメソッド(この例では「Fruit」)を定義することで、コンストラクタとすることも可能ですが、これは古い指定方法です。
construct_3.php
01 | <?php |
02 | class Fruit{ |
03 | private $name = null; |
04 | private $size = null; |
05 | private $price = null; |
06 |
07 | function Fruit($name, $size, $price){ |
08 | $this->name = $name; |
09 | $this->size = $size; |
10 | $this->price = $price; |
11 | } |
12 | function getName(){ |
13 | return $this->name; |
14 | } |
15 | function getSize(){ |
16 | return $this->size; |
17 | } |
18 | function getPrice(){ |
19 | return $this->price; |
20 | } |
21 | } |
22 |
23 | $fruit = new Fruit('メロン', '大', '1200円'); |
24 | echo $fruit->getName(); |
出力結果
1 | $ php construct_3.php |
2 | メロン |
デストラクタ
デストラクタはコンストラクタの逆に、オブジェクトが参照されなくなった時に確実に実行されるメソッドです。
destruct_1.php
01 | <?php |
02 | class Fruit{ |
03 | private $name = null; |
04 | private $size = null; |
05 | private $price = null; |
06 |
07 | function __construct($name, $size, $price){ |
08 | $this->name = 'レモン'; |
09 | $this->size = $size; |
10 | $this->price = $price; |
11 | } |
12 | function getName(){ |
13 | return $this->name; |
14 | } |
15 | function getSize(){ |
16 | return $this->size; |
17 | } |
18 | function getPrice(){ |
19 | return $this->price; |
20 | } |
21 | function __destruct(){ |
22 | echo 'オブジェクトを破棄します'.PHP_EOL; |
23 | } |
24 | } |
25 |
26 | $fruit = new Fruit('メロン', '大', '1200円'); |
27 | echo $fruit->getName().PHP_EOL; |
28 | echo '最後の行です'.PHP_EOL; |
出力結果
1 | $ php destruct_1.php |
2 | レモン |
3 | 最後の行です |
4 | オブジェクトを破棄します |
スクリプト終了と同時にオブジェクトが破棄されるため、デストラクタが呼び出され「オブジェクトを破棄します」と出力されていることがわかります。
次の例のように、unsetやnullを代入するとオブジェクトが破棄されるので、デストラクタはそのタイミングで呼び出されます。
destruct_2.php
01 | <?php |
02 | class Fruit{ |
03 | private $name = null; |
04 | private $size = null; |
05 | private $price = null; |
06 |
07 | function __construct($name, $size, $price){ |
08 | $this->name = $name; |
09 | $this->size = $size; |
10 | $this->price = $price; |
11 | } |
12 | function getName(){ |
13 | return $this->name; |
14 | } |
15 | function getSize(){ |
16 | return $this->size; |
17 | } |
18 | function getPrice(){ |
19 | return $this->price; |
20 | } |
21 | function __destruct(){ |
22 | echo 'オブジェクトを破棄します'.PHP_EOL; |
23 | } |
24 | } |
25 |
26 | $fruit = new Fruit('メロン', '大', '1200円'); |
27 | echo $fruit->getName().PHP_EOL; |
28 | $fruit = null; |
29 | echo '最後の行です'.PHP_EOL; |
出力結果
1 | $ php destruct_2.php |
2 | メロン |
3 | オブジェクトを破棄します |
4 | 最後の行です |
destruct_3.php
01 | <?php |
02 | class Fruit{ |
03 | private $name = null; |
04 | private $size = null; |
05 | private $price = null; |
06 |
07 | function __construct($name, $size, $price){ |
08 | $this->name = $name; |
09 | $this->size = $size; |
10 | $this->price = $price; |
11 | } |
12 | function getName(){ |
13 | return $this->name; |
14 | } |
15 | function getSize(){ |
16 | return $this->size; |
17 | } |
18 | function getPrice(){ |
19 | return $this->price; |
20 | } |
21 | function __destruct(){ |
22 | echo 'オブジェクトを破棄します'.PHP_EOL; |
23 | } |
24 | } |
25 |
26 | $fruit = new Fruit('メロン', '大', '1200円'); |
27 | echo $fruit->getName().PHP_EOL; |
28 | unset($fruit); |
29 | echo '最後の行です'.PHP_EOL; |
出力結果
1 | $ php destruct_3.php |
2 | メロン |
3 | オブジェクトを破棄します |
4 | 最後の行です |
デストラクタは、「オブジェクトが破棄される際にログに書き出す」などに加えて、スクリプト終了時に確実に実行されることを利用して、開いたままになっているファイルを閉じるなどの使い道があります。
次の例で見てみましょう。
destruct_file.php
01 | <?php |
02 | class File{ |
03 | private $handle = null; |
04 |
05 | function __construct($path){ |
06 | $this->handle = fopen($path, 'r+'); |
07 | flock($this->handle, LOCK_EX); |
08 | } |
09 | function write($text){ |
10 | fwrite($this->handle, $text); |
11 | return true; |
12 | } |
13 | function read(){ |
14 | $result = null; |
15 | while ($line = fgets($this->handle)) { |
16 | $result .= $line.PHP_EOL; |
17 | } |
18 | return $result; |
19 | } |
20 | function __destruct(){ |
21 | flock($this->handle, LOCK_UN); |
22 | fclose($this->handle); |
23 | echo 'ファイルを閉じて終了します。'.PHP_EOL; |
24 | } |
25 | } |
26 |
27 | $file = new File('./written_file.txt'); |
28 | echo $file->read().PHP_EOL; |
29 | $file->write('試しに書いてみます'.PHP_EOL); |
二回続けて実行してみます。
出力結果
01 | $ php destruct_file.php |
02 | 元から書いてある文章 |
03 |
04 |
05 | ファイルを閉じて終了します。 |
06 | $ php destruct_file.php |
07 | 元から書いてある文章 |
08 |
09 | 試しに書いてみます |
10 |
11 |
12 | ファイルを閉じて終了します。 |
このように、デストラクタでファイルロックを解除してクローズしておけば、オブジェクトが破棄される時にファイルがクローズされるため、「閉じ忘れて他の処理をしている間ずっとロックされたまま」といったことを防げます。