.// an implementation of the abstract data type "person"
public class Person {
// data members
private String firstName;
private String lastName;
private String middleName;
// default constructor
public Person() {
setName("", "");
}
// constructor with parameters
public Person(String first, String...
User Profile
Collapse
-
Can somebody please help me finish this i started but can't finish
// an implementation of the abstract data type "person"
public class Person {
// data members
private String firstName;
private String lastName;
// default constructor
public Person() {
setName("", "");
}
// constructor with parameters
public Person(String first, String last) {
setName(first, last);...
No activity results to display
Show More
Leave a comment: