PHP

PHP 後置, 前置インクリメント

 

後置インクリメント

 

$num = 0;

echo $num++;  // 0
echo $num++;  // 1

インクリメントする前に変数を応える。

 

前置インクリメント

 

$num =0;

echo ++$num;  // 1
echo ++$num;  // 2

変数をインクリメントしてから応える。

 

使用例

 

 

PHPデザインパターン入門P168

<?php
require_once 'Command.class.php';

class Queue
{
    private $commands;
    private $current_index;

    public function __construct() {
        $this->commands = array();
        $this->current_index = 0;
    }

    public function addCommand(Command $command) {
        $this->commands[] = $command;
    }

    public function run() {
        while(!is_null($command = $this->next())) {
          $command->execute();
        }
    }

    public function next() {
        if(count($this->commands) === 0 ||
           count($this->commands) <= $this->current_index) {
               return null;
        } else {
            return $this->commands[$this->current_index++];
        }
    }
}

 

ここで

return $this->commands[$this->current_index++];

これは

$this->commands[0]を初回返す

 

    public function run() {
        while(!is_null($command = $this->next())) {
          $command->execute();
        }
    }

初回の$command->execute()は、

$commands[0]->execute()と同じ。

 

 

Amazonおすすめ

iPad 9世代 2021年最新作

iPad 9世代出たから買い替え。安いぞ!🐱 初めてならiPad。Kindleを外で見るならiPad mini。ほとんどの人には通常のiPadをおすすめします><

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)