+ 1
Help me to find data fild for this class'
Who can help me to find data Fields for class' First one is UnderGraduate class. the Second one PostGraduate class. In Java language
7 ответов
+ 1
Yes that's it, Thank you a lot
+ 1
You're welcome...
0
Question is not clear ...
Where is your code to say what Data fields it have?...
Do you don't know what 'data fields ' mean? Or you want an idea to how to implement data fields for those classes?
0
Jayakrishna🇮🇳 yes, right that's it I want an idea to how to implement data fields for those classes
0
I mean what I can to use in those classes for e.g
The data fields for class Student
int StudentID;
String StudentEmail;
String StudentName;
and Like this.
0
For ug/pg,
You can take datatfields as
College Name
Number of Courses
Number of seats.. (if need empty/filled)
Number of faculty..
Course fee..
Like these you can define what you need..
Is this what you looking?
0
For methods: for example
Find or display details for a particular student-id by
void display(Ug id1)
{
System. out.println(id1.StudentID + " "+id1.email + " "+ id1.name);
}
Here id1 is object of UG class...
further implement methods to show branches, seats, fee, filled,empty, labs, ...etc