Connecting Tech Pros Worldwide Help | Site Map

simple Inheritance problem

  #1  
Old November 8th, 2005, 03:35 AM
MrTang001@gmail.com
Guest
 
Posts: n/a
How I can fix this problem?
I don't know why it alway prompted (first use this function). I have
use newDollars, newCents... to access the base class member variable.
And the member functions for Initialize() and Print(), is it function
overloading? it already have this functions in the base class.

Pls let me know what problem of its! Thx

------------------------------------------------------------------
Result
------------------------------------------------------------------
[admin Lab5]$ g++ -c main.cpp MoneyType.cpp ExtMoney.cpp
ExtMoney.cpp: In method `void ExtMoney::Print() const':
ExtMoney.cpp:22: `newDollars' undeclared (first use this function)
ExtMoney.cpp:22: (Each undeclared identifier is reported only once
ExtMoney.cpp:22: for each function it appears in.)
ExtMoney.cpp:22: `newCents' undeclared (first use this function)
ExtMoney.cpp:22: `newCurrency' undeclared (first use this function)
ExtMoney.cpp: In method `void ExtMoney::Initialize(long int, long int,
basic_string<char,string_char_traits<char>,__defau lt_alloc_template<true,0>[color=blue]
>)':[/color]
MoneyType.h:15: `long int MoneyType::dollars' is private
ExtMoney.cpp:35: within this context
MoneyType.h:16: `long int MoneyType::cents' is private
ExtMoney.cpp:36: within this context
------------------------------------------------------------------


Base class defination
------------------------------------------------------------------
#ifndef MONEY_TYPE_H
#define MONEY_TYPE_H

class MoneyType{
public:
MoneyType();
MoneyType(long newDollars, long newCents):dollars(newDollars),
cents(newCents){};
void Initialize(long, long);
long DollarsAre() const;
long CentsAre() const;
void Print() const;
MoneyType Add(const MoneyType &) const;

private:
long dollars;
long cents;
};

#endif
------------------------------------------------------------------
Base class implementation
------------------------------------------------------------------
#include <iostream>
#include "MoneyType.h"
using namespace std;

// default constructor
MoneyType::MoneyType(){
dollars = 0;
cents = 0;
}
/*
// other constructor
MoneyType::MoneyType(long newDollars, long newCents){
dollars = newDollars;
cents = newCents;
}
*/
// dollars is set to newDollars; cents is set to newCents.
void MoneyType::Initialize(long newDollars,long newCents){
dollars = newDollars;
cents = newCents;
}

// Class member dollars is returned.
long MoneyType::DollarsAre() const{
return dollars;
}

// Class member Cents is returned.
long MoneyType::CentsAre() const{
return cents;
}

// print the member dollars and cents.
void MoneyType::Print() const{
cout << dollars << " " << cents << " ";
}

// value + self is returned.
MoneyType MoneyType::Add(const MoneyType &value) const{
MoneyType result;
result.cents = cents+value.cents;
result.dollars = dollars+value.dollars;
return result;
}
------------------------------------------------------------------
derived class defination
------------------------------------------------------------------
#ifndef EXTMONEY_H
#define EXTMONEY_H

#include <string>
#include "MoneyType.h"
using namespace std;

class ExtMoney: public MoneyType{
public:
// - default constructor
// - currency is set to "dollars"
ExtMoney();

// parameters: long newDollars, long newCents, const string newCurrency
// - initialize dollars and cents to newDollars and newCents
respectively
// using initialization list
// - currency is set to newCurrency
ExtMoney(long, long, const string);

// - print the member dollars, cents and currency
void Print() const;

// - class member currency is returned
string CurrencyIs() const;

// parameters: long newDollars, long newCents, string newCurrency
// - dollars is set to newDollars
// - cents is set to newCents,
// - currency is set to newCurrency
void Initialize(long, long, string);

private:
string currency;
};

#endif

------------------------------------------------------------------
dervied class implementation
------------------------------------------------------------------
#include <iostream>
#include "ExtMoney.h"
using namespace std;

// - default constructor
// - currency is set to "dollars"
ExtMoney::ExtMoney(){
currency = "";
}

// parameters: long newDollars, long newCents, const string newCurrency
// - initialize dollars and cents to newDollars and newCents
respectively
// using initialization list
// - currency is set to newCurrency
ExtMoney::ExtMoney(long newDollars, long newCents, const string
newCurrency)
:MoneyType(newDollars, newCents), currency(newCurrency){
currency = newCurrency;
}

// - print the member dollars, cents and currency
void ExtMoney::Print() const{
cout << newDollars << " " << newCents << " " << newCurrency;
}

// - class member currency is returned
string ExtMoney::CurrencyIs() const{
return(currency);
}

// parameters: long newDollars, long newCents, string newCurrency
// - dollars is set to newDollars
// - cents is set to newCents,
// - currency is set to newCurrency
void ExtMoney::Initialize(long newDollars, long newCents, string
newCurrency){
dollars = newDollars;
cents = newCents;
currency = newCurrency;
}
------------------------------------------------------------------
main class
------------------------------------------------------------------
#include <iostream>
#include "ExtMoney.h"
using namespace std;

int main(){
MoneyType money;
cout << "initilaized by default constructors" << endl;
money.Print(); //0 , 0
cout << endl;

ExtMoney extMoney1;
extMoney1.Print();
cout << endl;

cout << "initialized by other constructors" << endl;
ExtMoney extMoney2(3000, 88, "forints");
extMoney2.Print();
cout << endl;

cout << "initialized at run time" << endl;
extMoney1.Initialize(5000, 99, "pounds");
extMoney1.Print();
cout << endl;
return 0;
}

------------------------------------------------------------------

  #2  
Old November 8th, 2005, 04:25 AM
Victor Bazarov
Guest
 
Posts: n/a

re: simple Inheritance problem


MrTang001@gmail.com wrote:[color=blue]
> How I can fix this problem?
> I don't know why it alway prompted (first use this function). I have
> use newDollars, newCents... to access the base class member variable.[/color]

Why? 'newDollars' is an argument in another function. It has no relation
to the 'Print' function.
[color=blue]
> And the member functions for Initialize() and Print(), is it function
> overloading? it already have this functions in the base class.[/color]

Start by understanding what you're allowed to access where. What is the
difference between a member variable and a local variable? Open your C++
book and give it another read.

V


  #3  
Old November 8th, 2005, 05:25 AM
Amazing
Guest
 
Posts: n/a

re: simple Inheritance problem


I get what you mean. Let me try!

Thx a lot,

  #4  
Old November 8th, 2005, 06:25 AM
Amazing
Guest
 
Posts: n/a

re: simple Inheritance problem


Is that using get set function in the base class public?

e.g.
MoneyType(long newDollars, long newCents):dollars(newDollars),
cents(newCents){};
void set_dollars = (long& newDollars);
void set_cents = (long& newCents);
long get_dollars();
long get_cents();

  #5  
Old November 8th, 2005, 04:45 PM
Victor Bazarov
Guest
 
Posts: n/a

re: simple Inheritance problem


Amazing wrote:[color=blue]
> Is that using get set function in the base class public?
>
> e.g.
> MoneyType(long newDollars, long newCents):dollars(newDollars),
> cents(newCents){};
> void set_dollars = (long& newDollars);
> void set_cents = (long& newCents);
> long get_dollars();
> long get_cents();
>[/color]

I honestly have no idea what you're talking about.

V
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Inheritance problem amidzic.branko@gmail.com answers 4 May 9th, 2007 08:15 PM
Simple Inheritance : Creating derived classes from instances of base class. nyathancha@hotmail.com answers 26 January 24th, 2007 04:55 AM
Inheritance Problem from a simple base type to a structured complicated type mflll@wiu.edu answers 0 July 27th, 2006 01:25 AM
Inheritance Problem (src vs. Codebehind) Michael answers 1 November 18th, 2005 02:00 AM