User Profile

Collapse

Profile Sidebar

Collapse
rfreder2
rfreder2
Last Activity: Oct 4 '06, 06:39 PM
Joined: Sep 28 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • .// 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...
    See more | Go to post

    Leave a comment:


  • 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);...
    See more | Go to post
No activity results to display
Show More
Working...