Results 1 to 2 of 2

Thread: Operator overloading,initization, Print() in header file

Threaded View

  1. #1

    Thread Starter
    New Member
    Join Date
    Mar 2003
    Posts
    4

    Operator overloading,initization, Print() in header file

    I'm currently writing a header file for a Car class. But The problem is I don't know how to initialized in the Car class and use the copy constructor in the header file. Also, this header file requires a operator function. When I compile it, I have a syntax errors for those two operator function. For the Print() method, I have to use it for display the mantfacturere, model, year, total manufacture, total kilometers travelled and the amount of fuel costs, total number of services and fuel economy with print method. Can anyone please take a look at my code and help me fixing some of the mistakes in the header file?

    Thank you

    PHP Code:
    #ifndef CAR_H
    #define CAR_H
    #ifndef LEN
    #define LEN 25

    class Car
    {    
           private:
               
    char name[LEN]; 
               
    char model[LEN]; 
               
    int year;
        
           public:
                
    Car();
                
    Car(char *mchar *nint y);
                
    Car(const Car &source);              //copy constructor
                
    const Car operator +(const Journeymeter) const;
                const 
    Car operator +(const FuelPurchaseamount) const;
                
    void print(void) const;        
                ~
    Car();
    };
    #endif 
    Last edited by Tozilla; Mar 26th, 2003 at 10:06 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width