我正在将实例变量添加到作为引用类型的类“Person”(“Date”,我已经为其编写了一个类)。因此,在我的 Person 类的构造函数中,我尝试使用 Date 类的构造函数初始化 Date 属性,但我不确定如何执行此操作。以前我只初始化过原始类型(或字符串),如下所示。这是我的代码中的一段。我不确定如何初始化“生日”,以便它使用 Date 类的构造函数。谢谢!
public class Person {
/* Attribute declarations */
private String lastName; // last name
private String firstName; // first name
private String email; // email address
private Date birthday; // birth date
/**
* Constructor initializes the person's name, email address, and birthday
*/
public Person(String firstName, String lastName, String email, Date birthday) {
this.firstName = firstName;
this.lastName = lastName;
this.email = email;
this.birthday = ????