本文介绍了需要帮助在C#中正确建立库系统的OOP结构的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的想法,告诉我它是正确的

类成员
姓名:姓名,类型,会员ID,密码,地址,借用限制
方法:注册,登录,借阅,还书,接收

班级图书管理员
字段:名称,ID,密码
方法:登录,添加书,删除书,更新书

课堂书
字段:名称,作者,版本,出版商,书籍编号,状态,机架编号

图书类在会员和图书馆员类中继承.

its what i thought, tell me is it correct

class Member
Feilds: Name , type, member ID,password, Address, borrowing limitation
methods: registeration, login, borrow, return book, reciept

Class Librarian
Fields: Name, ID, password
Methods: login, Add book, delete book, update book

Class Book
Fields: name, author, edition, publisher, no of books, status , rack no

book class is inherited in Member and librarian class

推荐答案




这篇关于需要帮助在C#中正确建立库系统的OOP结构的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 05:19