assignment
i need to make a call to my toString method which is my constructor class. i need to do this from my studentTest class, which is my driver class, how do i do this.
here is my toString:
public String toString(){
String str ="";
str +="Last Name: " + getLastName();
str +="First Name: " + getFirstName();
str +="Address: " + getAddress();
str +="City: " + getCity();
str +=" State: " + getState();
str +="Zip: " + getZip();
str +="Home Phone: " + getHomePhone();
str +="Cell Phone: " + getCellPhone();
str +="GPA: " + getGradePointAve();
return str;
}
how do i call toString from the studentTest class.

