I have two classes Student and Tutor. Tutor is basically a student (Tutor extends Student) who has facultyID. Once his contract is complete, he returns to being just a student. So can I somehow convert him back to his "previous" roll of student?
|
What you really want to do here is use composition and not inheritance. Keep all your objects as type Student, then you just want to temporarily add the behaviour of a Tutor so why not include a property to the Student class of type Tutor. You can then set or remove the Tutor property as required. Adding an isTutor() method to the Student class will also be of use. The Tutor class will encapsulate the behaviour (i.e. methods) of being a Tutor. You should even consider using an Interface for the Tutor class, but I thought I'd keep this answer simple to begin with. Another approach is to have the Tutor class contain a reference to a Student object, but it depends on how you are going to be interacting with the Student and Tutor objects on which way around you want to code this [EDIT]
|
||||
|
|
|
Once you create an instance of some type (for example, Some alternatives:
|
|||
|
|
|
You can cast the Tutor as a Student so your code treats him as such at compile time, but the object will remain a Tutor, so calling any overridden methods will cause the Tutor class's version to be called. The only way to do the kind of "conversion" you're looking for is to create a new Student object and give it all the properties that the Tutor has. Since you're finding that you need to do this conversion, you may want to re-think the class structure. For example, maybe both Students and Tutors should really just be Persons, and each Person can have the Role of Student or Teacher. |
|||||
|
|
I think, this screams containment and interface programming. How about this:
This way, your Student remains a student, even if it moves to the Tutor position. When Tutor's term expires you just GC the tutor record. Student's record, on the other hand will still be available in Central Services. |
|||
|
|
|
You could just write a method like You might also consider forgoing inheritence in this case and just have a flag indicating the whether or not this student is a Tutor. |
|||||||
|
|
There is no such thing as "converting" him back to a student, he is a tutor, and a tutor already IS a student. However, there may be some value in genericizing the access of this object, so that you only use student method. There are several idioms in java for this. 1) You can use the Student API exclusively in your code, with the exception of the Tutor portion. 2) You can have a "toStudent/toTutor" method for your objects, which allow them to return objects which are specific to the role. //My preference 3) You can use interfaces. Have Tutor and Student both be interfaces, and build your objects using interface implementation. If you refer to objects using minimal interfaces, rather than heavyweight inheritance patterns, your code will probably scale better in the future. |
|||
|
|
|
||||
|
|
|
You can't change objects type in Java. Probably the easiest way to achieve youw way is to clone all parameters from Tutor into a new Student object. |
||||
|
|
boolean isTutor;member or simply keeping a list of students that are also tutors is enough. no need to model everything with OO patterns just because you can. – kritzikratzi Nov 1 '11 at 21:53