Files
oop/finalproject/Question9/IUser.java
2022-05-24 23:41:21 +08:00

14 lines
276 B
Java

/*
* Author: CHEN Yongyuan (Walter) 1930006025 from OOP(1007)
* Date: 2022-04-25
* Description: This is the interface of IUser.
*/
public interface IUser {
public String getName();
public int getBook();
public void moreBook(int number) throws NotALenderException;
}