PHPであるインターフェイスのクラスを実装したクラスを継承する際に
php
1Declaration of 継承をしているクラスのパス::calculate() must be compatible with インターフェスにあるメソッド
なぜこのようなエラーが出るのでしょうか。
インターフェイスを実装したクラスでも普通に継承できますよね?
気になる質問をクリップする
クリップした質問は、後からいつでもMYページで確認できます。
またクリップした質問に回答があった際、通知やメールを受け取ることができます。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
回答3件
0
継承したクラス上で定義している calculate() が、インターフェースで定義している calculate() とパラメータが異なっているからです。
型宣言が違っているのでしょう。
投稿2019/09/13 08:48
総合スコア13703
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
0
ベストアンサー
こんな感じのコードでも書いたんじゃないかと。
php
1<?php 2 3class Foo 4{ 5 public function printItem($string) 6 { 7 echo 'Foo: ' . $string . PHP_EOL; 8 } 9 10 public function printPHP() 11 { 12 echo 'PHP is great.' . PHP_EOL; 13 } 14} 15 16class Bar extends Foo 17{ 18 public function printItem($string, $integer) 19 { 20 for ($i = 0; $i < $integer; $i++) { 21 echo 'Bar: ' . $string . PHP_EOL; 22 } 23 } 24} 25 26$foo = new Foo(); 27$bar = new Bar(); 28$foo->printItem('baz'); // 出力: 'Foo: baz' 29$foo->printPHP(); // 出力: 'PHP is great' 30$bar->printItem('baz'); // 出力: 'Bar: baz' 31$bar->printPHP(); // 出力: 'PHP is great' 32
これを実行すると
「Warning: Declaration of Bar::printItem($string, $integer) should be compatible with Foo::printItem($string) in /in/fLqPv on line 18」
とか出ますし。
継承元クラスの同名メソッドの定義を上書きするようなことをするなと。
で、拡張した引数をどうしても使いたいときはデフォルト値を与えるなど。
php
1<?php 2 3class Foo 4{ 5 public function printItem($string) 6 { 7 echo 'Foo: ' . $string . PHP_EOL; 8 } 9 10 public function printPHP() 11 { 12 echo 'PHP is great.' . PHP_EOL; 13 } 14} 15 16class Bar extends Foo 17{ 18 public function printItem($string, $integer = 1) 19 { 20 for ($i = 0; $i < $integer; $i++) { 21 echo 'Bar: ' . $string . PHP_EOL; 22 } 23 } 24} 25 26$foo = new Foo(); 27$bar = new Bar(); 28$foo->printItem('baz'); // 出力: 'Foo: baz' 29$foo->printPHP(); // 出力: 'PHP is great' 30$bar->printItem('baz'); // 出力: 'Bar: baz' 31$bar->printPHP(); // 出力: 'PHP is great'
投稿2019/09/13 08:46
退会済みユーザー
総合スコア0
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
あなたの回答
tips
太字
斜体
打ち消し線
見出し
引用テキストの挿入
コードの挿入
リンクの挿入
リストの挿入
番号リストの挿入
表の挿入
水平線の挿入
プレビュー
質問の解決につながる回答をしましょう。 サンプルコードなど、より具体的な説明があると質問者の理解の助けになります。 また、読む側のことを考えた、分かりやすい文章を心がけましょう。