hello everyone... can anyone help me write a java program to make a student record system using eclipse...
Printable View
hello everyone... can anyone help me write a java program to make a student record system using eclipse...
Probably.
To start off; List all the entities involved in your system e.g. Students, Subjects, Teachers, etc; create an Object for each entity.
In each object:
a) create a constructor of how you would like to initialise the object
b) add fields for properties that need to be stored
c) add getter and setter methods to retrieve or set those properties
d) add behaviors (methods which are object-specific)
After that you can think about putting them together using Lists or otherwise.