Package edu.nwmissouri.animalList
Class Duck
java.lang.Object
edu.nwmissouri.animalList.Animal
edu.nwmissouri.animalList.Duck
Duck class (derived subclass of the superclass Animal)
- Author:
- Sandhya Nidigonda
-
Field Summary
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
duckEggsProduction
(int monthlyEggsProduction, int monthsinYear) Custom Duck function - your class must use a unique function namevoid
eat()
void
move()
abstract move() - has no implementationvoid
speak()
abstract speak() - has no implementationvoid
-
Constructor Details
-
Duck
Duck constructor- Parameters:
name
- - the name of this Animal is Duck
-
-
Method Details
-
speak
public void speak()Description copied from class:Animal
abstract speak() - has no implementation -
eat
public void eat() -
move
public void move()Description copied from class:Animal
abstract move() - has no implementation -
duckEggsProduction
public int duckEggsProduction(int monthlyEggsProduction, int monthsinYear) Custom Duck function - your class must use a unique function name- Parameters:
monthlyEggsProduction
-monthsinYear
-- Returns:
- int
-
studentDuck
public void studentDuck()
-