大学系统项目 [英] project for college system

查看:77
本文介绍了大学系统项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好...

我想为一个大学开发一个项目,但是我有一个问题,那就是如何开发一个类模型(面向对象的模型).....我对C#中的编码有一个好主意.但是对这样的项目来说较新....

我已经为在线商店开发了一个项目......

hi to all...

i want to develop a project for a college but i have problem , that how to develop a class model ( object oriented model)..... i have a good idea about the coding in C# . but newer to such like project....

i have develop a project for online shop ......

推荐答案

很高兴您具有C#知识,类模型设计启发式过程.您是唯一完成课程表的人.在这两种方法之间,您需要采用粒子方法,我发现代码完整2 [ ^ ],对于质量代码和设计也是如此.

快乐编程
It is good that you have C# knowledge, Class Model design is heuristic process . You are the only person who completes your class diagram. In between you need to take particle approach I found Code Complete 2[^], very good book for quality code and design as well.

Happy Programming


要开发这种项目,从学生上大学开始入学开始思考学生是你的对象之后,他填写了一个表格要求学生提供一些信息这些是学生对象的属性. 他/她因特殊原因被录取这是您的另一个对象课程"考虑对象的属性.

考虑项目的需求,您将准备对象
如果有任何帮助,您可以将我邮寄至:
To Develop This Kind Of Project Think From Starting When A Student Comes to college for admission Here Student Is Your An Object After That He fills a form that requires some information from the student these are the property of the student object. He/She Takes Admission In A Particular Couse Here is Your Another Object "Course" Think About Property Of Object.

Think About The Requirement of the project and you will prepare object
In Case of any help you can mail me to :


确定!学生与课程之间有什么关系?一个学生注册了该课程,然后您可以将另一个对象"student_course"(具有注册和课程的内容考虑在内)

班级学生
{
字符串enrollment_no
字符串名称
.
.
.
.
.
.


}

上课课程
{
字符串course_code
字符串course_name
}




class student_course
{
字符串course_code
字符串enrollment_no
}

使用ER建模查找中间的类/对象
OK ! What is the relation between Student and the course . A student is enrolled in the course than you can make another object student_course which have enrolment and course consider this

class student
{
string enrollment_no
string name
.
.
.
.
.
.


}

class course
{
string course_code
string course_name
}




class student_course
{
string course_code
string enrollment_no
}

USE ER-MODELING to find intermidiate class/objects


这篇关于大学系统项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆