Advertisement
lrm2000

School - Person 2017 P5

Sep 19th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public class Person {
  2. private String firstName;
  3. private String lastName;
  4.  
  5. public Person(String fName, String lName) {
  6. firstName = fName;
  7. lastName = lName;
  8. }
  9.  
  10. public String toString() {
  11. return firstName + " " + lastName;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement