工厂方法问题
为什么 User::factory()
创建了一个对象,而 User::factory()->get()
却没有?我做错了什么?谢谢!
class User {
public $name;
public $email;
public static function factory()
{
return new User();
}
public function get()
{
$this->name = 'Foo Bar';
$this->email = '[email protected]';
}
}
Why does User::factory()
create an object, but User::factory()->get()
not? What am I doing wrong? Thanks!
class User {
public $name;
public $email;
public static function factory()
{
return new User();
}
public function get()
{
$this->name = 'Foo Bar';
$this->email = '[email protected]';
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
User::factory()
创建一个对象,因为它返回一个由构造函数创建的对象。User::factory()->get()
创建一个对象并调用 get 方法,但 get 方法不返回该对象,因此该对象随后被销毁。如果您希望 get 方法返回对象,只需在方法末尾使用return $this;
即可。否则将返回的对象分配给变量,然后调用 get:
User::factory()
creates an object because it returns an object made by an constructor.User::factory()->get()
creates an object and calls the get method, but the get method do not return the object, so it gets destructed afterwards. If you want your get method to return the object, just usereturn $this;
at the end of the method.Otherwise assign the returned object to variable and then call get:
让你的 get 返回 $this;。
Have your get return $this;.
get 方法没有返回任何内容。 可以添加:作为 get 方法的最后一行。
如果您希望 get 方法返回一个对象,
The get method is not returning anything. You can add:
as the last line of the get method if you want it to return an object.