Advertisement
wingman007

Java - Human

Nov 24th, 2013
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.50 KB | None | 0 0
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package javaapplication16;
  6.  
  7. /**
  8.  *
  9.  * @author fmi
  10.  */
  11. public class Human {
  12.    
  13.     public String name;
  14.    
  15.     public int age;
  16.    
  17. //    public Human(String nameParm, int ageParm){
  18. //        name = nameParm; // this.name
  19. //        age = ageParm;
  20. //    }
  21.    
  22.     public void introduceYourself() {
  23.         System.out.println("My name is " + name + ". I am " + age + " old!");
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement