工厂方法问题

发布于 2024-11-08 21:12:55 字数 497 浏览 0 评论 0原文

为什么 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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

oО清风挽发oО 2024-11-15 21:12:55

User::factory() 创建一个对象,因为它返回一个由构造函数创建的对象。 User::factory()->get() 创建一个对象并调用 get 方法,但 get 方法不返回该对象,因此该对象随后被销毁。如果您希望 get 方法返回对象,只需在方法末尾使用 return $this; 即可。
否则将返回的对象分配给变量,然后调用 get:

$user = User::factory();
$user->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 use return $this; at the end of the method.
Otherwise assign the returned object to variable and then call get:

$user = User::factory();
$user->get();
ゞ记忆︶ㄣ 2024-11-15 21:12:55

让你的 get 返回 $this;。

Have your get return $this;.

A君 2024-11-15 21:12:55

get 方法没有返回任何内容。 可以添加:作为 get 方法的最后一行。

   return $this;

如果您希望 get 方法返回一个对象,

The get method is not returning anything. You can add:

   return $this;

as the last line of the get method if you want it to return an object.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文