Sponsored Content
Top Forums Programming C++ : Base class member function not accessible from derived class Post 302910005 by anand.shah on Tuesday 22nd of July 2014 02:02:14 AM
Old 07-22-2014
C++ : Base class member function not accessible from derived class

Hello All,
I am a learner in C++. I was testing my inheritance knowledge with following piece of code.

Code:
#include <iostream>

using namespace std;

class base
{
	public :
		void display()
		{
			cout << "In base display()" << endl;
		}
		void display(int k)
		{
			cout << "In base display(int k)" << endl;
		}
};

class derived : public base
{
	public :
		void display()
		{
			cout << "In derive display()" << endl;
		}
};

int main()
{
	derived der;	
	der.display(50);
}


As far as I know it should compile without giving any error. But that is not the case as it is giving compilation error saying :-

Code:
StaticMember_1.cpp: In function ‘int main()':
StaticMember_1.cpp:30: error: no matching function for call to ‘derived::display(int)'
StaticMember_1.cpp:21: note: candidates are: void derived::display()

Can you guys help me out in finding why its giving error. there must be some concept here which I am missing.
Thanks in advance all of you.

Regards,
Anand Shah
 

9 More Discussions You Might Find Interesting

1. Programming

How to make a function friend to both base and derived class

Hi, I have a base class and derived a class from the base class, i want to print & read the data for the object created for the derived class,so i have overloaded both the << and >> operators and also have done the foward declaration. Below is the code snippet, #include <iostream> class... (3 Replies)
Discussion started by: ennstate
3 Replies

2. Programming

Handling a signal with a class member function

Hello, i am using the sigaction function to handle the SIGCHLD signal.Is it possible to use a class member function as the handler function (the sa_handler member of the sigaction structure)? The function's signature is: void (*sa_handler)(int);so i don't think i can use a static member function... (2 Replies)
Discussion started by: Zipi
2 Replies

3. Programming

C++ class definition with a member of the same class

Hi, i have a question about C++. Is it possible to declare a class with a member ot the same class? For example, a linked list or i want to convert this C code to C++ class (Elemento) typedef struct elemento { char name; char value; List<struct elemento> ltElementos; ... (7 Replies)
Discussion started by: pogdorica
7 Replies

4. Programming

Base class's variables not accessible????

Hi friends, The derived class cannot access the base class's variables in my program. You can have a look at my code, I am actually using class templates. #include <iostream> using namespace std; template <class T> class Sum { friend void Check(Sum &s, T a, T b) { T x,... (2 Replies)
Discussion started by: gabam
2 Replies

5. Programming

Writing C++ class and member functions

I have the following class and thought that when I call the set command to set a member, I always use value. Would that be fine? class ModMisfit { protected: Real dtau; Real mdacc; Real mindist; bool hw; Source** src; public: void ... (7 Replies)
Discussion started by: kristinu
7 Replies

6. UNIX for Advanced & Expert Users

Get pointer for existing device class (struct class) in Linux kernel module

Hi all! I am trying to register a device in an existing device class, but I am having trouble getting the pointer to an existing class. I can create a class in a module, get the pointer to it and then use it to register the device with: *cl = class_create(THIS_MODULE, className);... (0 Replies)
Discussion started by: hdaniel@ualg.pt
0 Replies

7. Programming

Size of Derived class, upon virtual base class inheritance

I have the two class definition as follows. class A { public: int a; }; class B : virtual public A{ }; The size of class A is shown as 4, and size of class B is shown as 16. Why is this effect ?. (2 Replies)
Discussion started by: techmonk
2 Replies

8. Programming

Restricting member of a class non-inheritable in C++

There is base class B, and two derived classes D1 and D2 derived from Base. Base class B, have two data members ( public or protected or private or if any). D1 should inherit both these data members, and D2 should be deriving only one member from Base class. Is this kind of design possible without... (1 Reply)
Discussion started by: techmonk
1 Replies

9. Programming

Size of derived class, in case of multiple inheritance

Why, here the size of class 'Derived' is 8 ? class Base1 { public: virtual void f() { } }; class Base2 { public: virtual void f() { } }; class Derived : public Base1, Base2 { public: virtual void f() { } }; (1 Reply)
Discussion started by: techmonk
1 Replies
SWISS::BaseClass(3pm)					User Contributed Perl Documentation				     SWISS::BaseClass(3pm)

NAME
SWISS::BaseClass DESCRIPTION
This class is designed to impliment many of the properties that you expect in inheritance. All the housekeeping functions are defined in this module. See the notes on use for a description of how to make use of it. Functions new Returns a new SWISS::BaseClass object. rebless Converts a base class into your class! Call as $self->rebless($class) where $self is a base class object. It returns $self, reblessed, with the correct member variables. initialize Override this in each derived class to provide class specific initialization. For example, initialize may put arrays into member variables that need them. You must provide an initialize function. reformat Some line objects are implementing "lazy writing". This means that on writing an entry, they are only reformatted if they have been modified. The method reformat forces an object to be reformatted even if its content has not been modified. This may be useful e.g. to make sure the current formatting rules are applied. setEvidenceTags @array Sets the evidence tags of the object to the list passed in @array. addEvidenceTag string Adds the evidence tag to the object. deleteEvidenceTag string Deletes the evidence tag from the object. hasEvidenceTag string returns true if the object has the evidence tag. getEvidenceTags returns the array of evidence tags of the object Check4Clashes This function checks your classes member variable list for clashes with any class that it inherits from (any class that can(_containsFields) returns true on!). If it detects that in any base class that any data members have been already defined, it dies with a listing of the variables already used. It stops searching a root of an inheritance hierachy when it can find no baseclasses that support _containsFields. It will find all clashes in an entire inheritance tree. So in the inheritance hierachy of SWISS::BaseClass -> A -> B - > E SWISS::BaseClass -> C -> D -/ where E is the most derived class, if E contains names that clash with A members and names that clash with B members, both the A and B member clashes will be reported. If there were clashes with B and C, say, then again, all of the clashes would be reported. _containsFields This function is responsible for comparing a classes fields with the set in the calling package. This implimentation will work for cases where all of the classes that contribute fields are derived from SWISS::BaseClass. You may wish to make your own class fit this interface, so what follows is an interface API. _containsFields assumes that the first argument is the package that it is being called in. The following arguments are taken to be a list of fields which to check are not found in members of the current package. It should return either "undef" or a reference to an array of name clashes in the format "package::variable". It should call it's self for each parental class that supports this function. So it would look something like _containsFields { my $class = shift; my @toCheck = @_; foreach @toCheck { check that they are not in me. If they are, add them to the list of clashes to return. } add all base class clashes to your list of clashes if there were name clashes return a reference to them otherwise return undef } equal If two objects are equal, it returns true. Warning: This funktion compares two objects using a simple dump in Perl format, see Data::Dumper module. The comparison also takes private variables into account. Therefore: If the method 'equal' returns true, the objects are guaranteed to be equal, but it might return false although the two objects are equal in they public attributes. copy Returns a "deep copy" of the object. A skeletal derived class package myDerived; use vars qw ( @ISA %fields ); BEGIN { @ISA = ('SWISS::BaseClass'); %fields = ( 'i' => 1, 'hash' => undef ); myDerived->check4Clashes(); } sub new { print "myDerived::new(@_) "; my $class = shift; my $self = new SWISS::BaseClass; $self->rebless ($class); return $self; } sub initialize { my $self = shift; $self->{'hash'} = {}; } A class derived from myDerived would just substitute the name myDerived for SWISS::BaseClass. Hey presto - all sorted! perl v5.10.1 2006-01-26 SWISS::BaseClass(3pm)
All times are GMT -4. The time now is 12:28 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy