COMP2396
Loading...
Searching...
No Matches
animal.java
Go to the documentation of this file.
1package chapter7;
2
3@SuppressWarnings("unused")
4abstract class animal { //class must be abstract as it has abstract methods
5 int x;
6 abstract void mustbeoverriden();
7}