PRO_gramer

Pessoa hj

Jun 29th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. package agoradacerto;
  2.  
  3. public class Pessoa {
  4. private String nome;
  5.  
  6.  
  7. public Pessoa(String nome){
  8.     this.nome=nome;
  9. }
  10. public  String getPessoa(){
  11.     return this.nome;
  12. }
  13. public String toString(){
  14.     return "Nome da pessoa: "+this.nome;
  15. }
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment