您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
230 B

  1. #include <string>
  2. #include "Person.h"
  3. Person::Person(string name, string password, string email, string phoneNo)
  4. {
  5. this->name = name;
  6. this->password = password;
  7. this->email = email;
  8. this->phoneNo = phoneNo;
  9. }