Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

public class Customer { private String userName; private String password; private LocalDate dateCreated; public Customer ( String userName, String password ) { this.dateCreated = LocalDate.now

public class Customer {
private String userName;
private String password;
private LocalDate dateCreated;
public Customer(String userName, String password){
this.dateCreated = LocalDate.now();
this.userName = userName;
this.password = password;
}
public LocalDate getDateCreated(){
return dateCreated;
}
public void setPassword(String password){
this.password = password;
}
public String getPassword(){
return password;
}
public void setUserName(String userName){
this.userName = userName;
}
public String getUserName(){
return userName;
}
}
class CustomerTest {
public static void main(String[] args){
Customer testAcct = new Customer("user","pass");
testAcct.setPassword("Java");
System.out.println(testAcct.toString());
}
}
What does the toString() method need to look like to result in the following output (note that the date will reflect your current date instead):
UserName: user
Password: Java
Date Created: 6/9/2022
public String toString(){
DateTimeFormatter dateFormat = DateTimeFormatter.ofPattern("MM/dd/YYYY");
String state = "UserName: "+ userName +"
";
state += "Password: "+ password +"
";
state += "Date Created: "+ dateFormat.format(dateCreated)+"
";
}
public String toString(){
DateTimeFormatter dateFormat = DateTimeFormatter.ofPattern("MM/dd/YYYY");
String state = "UserName: "+ userName +"
";
state = "Password: "+ password +"
";
state = "Date Created: "+ dateFormat.format(dateCreated)+"
";
return state;
}
public String toString(){
DateTimeFormatter dateFormat = DateTimeFormatter.ofPattern("MM/dd/YYYY");
String state = "UserName: "+ userName +"
";
state += "Password: "+ password +"
";
state += "Date Created: "+ dateFormat.format(dateCreated)+"
";
return state;
}
public String toString(){
DateTimeFormatter dateFormat = DateTimeFormatter.ofPattern("mm/YYYY");
String state = "UserName: "+ userName +"
";
state += "Password: "+ password +"
";
state += "Date Created: "+ dateFormat.format(dateCreated)+"
";
return state;
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Management Databases And Organizations

Authors: Richard T. Watson

6th Edition

1943153035, 978-1943153039

More Books

Students also viewed these Databases questions