__construct() public method

public __construct ( $value = null )
コード例 #1
0
 public function __construct($number = NULL, $ComparableValueType = NULL)
 {
     parent::__construct();
     $this->number = $number;
     $this->ComparableValueType = $ComparableValueType;
 }
コード例 #2
0
 public function __construct($number = null)
 {
     parent::__construct();
     $this->number = $number;
 }
コード例 #3
0
 public function __construct($number = NULL, $ComparableValueType = NULL)
 {
     if (get_parent_class('LongValue')) {
         parent::__construct();
     }
     $this->number = $number;
     $this->ComparableValueType = $ComparableValueType;
 }