Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C++ > simple Inheritance problem

Reply
Thread Tools

simple Inheritance problem

 
 
MrTang001@gmail.com
Guest
Posts: n/a
 
      11-08-2005
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:rint() 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>
>)':

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:ollarsAre() const{
return dollars;
}

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

// print the member dollars and cents.
void MoneyType:rint() 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:rint() 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;
}

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

 
Reply With Quote
 
 
 
 
Victor Bazarov
Guest
Posts: n/a
 
      11-08-2005
wrote:
> 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.


Why? 'newDollars' is an argument in another function. It has no relation
to the 'Print' function.

> And the member functions for Initialize() and Print(), is it function
> overloading? it already have this functions in the base class.


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


 
Reply With Quote
 
 
 
 
Amazing
Guest
Posts: n/a
 
      11-08-2005
I get what you mean. Let me try!

Thx a lot,

 
Reply With Quote
 
Amazing
Guest
Posts: n/a
 
      11-08-2005
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();

 
Reply With Quote
 
Victor Bazarov
Guest
Posts: n/a
 
      11-08-2005
Amazing wrote:
> 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();
>


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

V
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
C++ Struct inheritance against class inheritance johnsonlau C++ 1 07-21-2008 04:58 PM
Interface inheritance vs Implementation inheritance. Daniel Pitts Java 27 02-27-2008 01:37 AM
Private Inheritance and Publice Inheritance karthikbalaguru C++ 9 09-10-2007 01:05 PM
mul. inheritance & overloading operator new/delete solved by virtual base inheritance? cppsks C++ 0 10-27-2004 07:49 PM
Private access modifier and Inheritance (Inheritance implementation in Java) maxw_cc Java 1 12-21-2003 11:38 AM



Advertisments