Joined: Fri Nov 25, 2011 8:09 pm Posts: 3 Has thanked: 0 time Have thanks: 0 time
Consider a class hierarchy involving motor vehicles. At the top of the hierarchy, class Motor_vehicle represents the most basic and general type of vehicles. Cars, Trucks, and Motorcycles are three types of vehicles that are extensions and specializations of the base class. Sport_Cars are included in the class hierarchy as a subclass of Cars.
Design the UML class diagram of all these classes. Include all attributes you find relevant for the classes, such as horse power, maximum speed, passenger capacity, load capacity, and weight. Include also all relevant methods.
Implement these classes and write test program to test your classes
I tried to solve it but i feel that is not accurate!
msi_333
Question subject: Re: help me! inheritance
Posted: Sat Nov 26, 2011 12:09 am
Joined: Tue Mar 27, 2007 10:55 pm Posts: 2279 Location: Earth Has thanked: 39 time Have thanks: 61 time
please we don;t solve full assignments , please post your progress and we will try to give you hints.
thanks .
_________________ Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )
Nasr
Question subject: Re: help me! inheritance
Posted: Sat Nov 26, 2011 8:25 am
Joined: Fri Nov 25, 2011 8:09 pm Posts: 3 Has thanked: 0 time Have thanks: 0 time
this is not an assignment!
msi_333
Question subject: Re: help me! inheritance
Posted: Tue Nov 29, 2011 1:12 am
Joined: Tue Mar 27, 2007 10:55 pm Posts: 2279 Location: Earth Has thanked: 39 time Have thanks: 61 time
Anyway , i think you can use eclipse to draw the UML of your package and in this UML you will have to define the relationships between the class , i remember that eclipse generate the code automatically for the design GUI .
_________________ Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )
Nasr
Question subject: Re: help me! inheritance
Posted: Tue Nov 29, 2011 7:02 am
Joined: Fri Nov 25, 2011 8:09 pm Posts: 3 Has thanked: 0 time Have thanks: 0 time
msi_333 wrote:
Anyway , i think you can use eclipse to draw the UML of your package and in this UML you will have to define the relationships between the class , i remember that eclipse generate the code automatically for the design GUI .
Yes I know all of that . I need help in coding
anyway I'll send U my solution and please look at it
msi_333
Question subject: Re: help me! inheritance
Posted: Tue Nov 29, 2011 10:20 pm
Joined: Tue Mar 27, 2007 10:55 pm Posts: 2279 Location: Earth Has thanked: 39 time Have thanks: 61 time
sure , please post it here ..
_________________ Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )
Raad
Question subject: Re: help me! inheritance
Posted: Sun Dec 04, 2011 4:03 pm
Consider a class hierarchy involving motor vehicles. At the top of the hierarchy, class Motor_vehicle represents the most basic and general type of vehicles. Cars, Trucks, and Motorcycles are three types of vehicles that are extensions and specializations of the base class. Sport_Cars are included in the class hierarchy as a subclass of Cars.
Design the UML class diagram of all these classes. Include all attributes you find relevant for the classes, such as horse power, maximum speed, passenger capacity, load capacity, and weight. Include also all relevant methods.
Implement these classes and write test program to test your classes.