Am I trying to Implement Multiple Inheritance. How can I do this.

Posted by Shantanu Gupta on Stack Overflow See other posts from Stack Overflow or by Shantanu Gupta
Published on 2010-05-17T04:57:38Z Indexed on 2010/05/17 5:40 UTC
Read the original article Hit count: 222

Filed under:
|
|
|
|

I have created a class say A which has some functions defined as protected.

Now Class B inherits A and class C inherits B. Class A has private default constructor and protected parameterized constructor.

I want Class B to be able to access all the protected functions defined in Class A but class C can have access on some of the functions only not all the functions and class C is inheriting class B.

How can I restrict access to some of the functions of Class A from Class C ?

EDIT:

namespace Db
{
 public Class A
  {
  private A(){}
  protected A(string con){assign this value}

  protected DataTable getTable(){return Table;}
  protected Sqlparameters setParameters(){return parameter;}
  }
}

namespace Data
{
 public Class B:A
  {
  protected B():base("constring"){}

  protected DataTable output(){return getTable();}
  protected sqlparameter values(param IDataParameter[] parameter){}
  }
}

namespace Bsns
{
 public Class C:B
  {
  protected C():base(){}

  protected DataTable show()
     {return values(setparameter());}

  }
}

EDIT

I think what I am trying to do here is Multiple inheritance.

Please check.

Class A
{
//suppose 10 functions are declared 
}

Class B:A
{
//5 functions declared which are using A's function in internal body
}


Class C:B
{
//using all functions of B but require only 4 functions of A to be accessible by C.
}

© Stack Overflow or respective owner

Related posts about oop

Related posts about classes