public class Human { String name; int age; double weight; // constructors must have same name than Class Human(String name, int age, double weight) { this.name = name; this.age = age; this.weight = weight; } void eat() { System.out.println(this.name + " is eating"); } void drink() { System.out.println(this.name + " is drinking"); } }