清洁构造方法

发布于 2025-01-23 15:22:48 字数 666 浏览 0 评论 0原文

我有一个具有大量参数的课程,

class Foo {
  public $d1;
  public $d2;
  public $d3;
  ...
  public function __construct($d1,$d2,$d3,$d4,$d5,$d6)
  {
   $this->d1 = $bar->d1;
   $this->d2 = $bar->d2;
   ...  
  }
}

我想在方法__构造我的尝试中清洁代码

class Bar {
  public $d1;
  public $d2;
  public $d3;
  ...
}

class Foo {
  public $d1;
  public $d2;
  public $d3;
  ...
  public function __construct(Bar $bar)
  {
   $this->d1 = $bar->d1;
   $this->d2 = $bar->d2;
   ...
  }
}

在这种结构中,我想观察两个重要点:




1-干净的代码
2-每当有人想成为此类的对象时,他都必须根据酒吧类的结构来做

我的结构正确吗?您有更好的报价吗?

I have a class with a large number of parameters in the construct method

class Foo {
  public $d1;
  public $d2;
  public $d3;
  ...
  public function __construct($d1,$d2,$d3,$d4,$d5,$d6)
  {
   $this->d1 = $bar->d1;
   $this->d2 = $bar->d2;
   ...  
  }
}

I want to clean the code in method __construct

my try :

class Bar {
  public $d1;
  public $d2;
  public $d3;
  ...
}

class Foo {
  public $d1;
  public $d2;
  public $d3;
  ...
  public function __construct(Bar $bar)
  {
   $this->d1 = $bar->d1;
   $this->d2 = $bar->d2;
   ...
  }
}

In this structure, I want to observe two important points :

1 - clean code
2 - Whenever someone wants to make an object of this class, he must make it according to the structure of the Bar class

Is my structure correct? Do you have a better offer?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文