finalproject q1

This commit is contained in:
2022-04-25 10:20:31 +08:00
parent e20c82d559
commit c1acb5b92e
3 changed files with 94 additions and 0 deletions

View File

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