0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【PHP】オーバーライドのサンプルソース

Last updated at Posted at 2021-06-16

コード

class Goku {
  function skill($name, $damage){
    echo "孫悟空の必殺技!【{$name}】!なんと{$damage}ダメージも敵に与える事ができるんだ!",PHP_EOL; 
  }
}

class Gohan extends Goku {
  function skill($name, $damage){
    echo "孫悟飯の必殺技!【{$name}】!なんと{$damage}ダメージも敵に与える事ができるんだ!"; 
  }
}
$dragonball = new Goku();
$dragonball->skill('元気玉', '500');
$dragonballZ = new Gohan();
$dragonballZ->skill('魔閃光', '435');

結果

孫悟空の必殺技!【元気玉】!なんと500ダメージも敵に与える事ができるんだ!
孫悟飯の必殺技!【魔閃光】!なんと435ダメージも敵に与える事ができるんだ!
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?