final project q2

This commit is contained in:
2022-05-24 22:08:20 +08:00
parent 7adb69e3a1
commit 6347507ede
4 changed files with 139 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
/*
* 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);
}