我编写了类方法addUser,它创建了新的用户实例,而不是将其对象添加到数组(集合,是吗?),代码如下所示:
public static function addUser($login, $pass, $email) {
$newuser = new cUser($login, $pass, $email); //calling constructor
self::dataLoad();
self::$D_users[$new_login] = $newuser; // adding to an array
self::dataStore();
}
我正在考虑的是,是否可以直接在构造函数中执行此操作?我是对的,这是不可能的吗?