クラス内のメソッドで変数を使用する2つの方法を取り上げています。一部のメソッドでは、最大20個の変数が使用されます。どの例がOOPプログラミング構造を最もよく満たすのか、そしてその理由
**Example 1:**
$sampleclass->variable1 = 100;
$sampleclass->variable2 = 200;
$sampleclass->variable3 = 300;
$row = $sampleclass->Method();
--------------------------
class sampleclass {
public function Method(){
if ($this->variable1) {
// do something
}
if ($this->variable2) {
// do something
}
if ($this->variable3) {
// do something
}
}
}
============================================
**Example 2:**
$row = $sampleclass->Method(100,200.300);
class sampleclass {
public function Method($variable1, $variable2, $variable3){
}
}