English 中文(简体)
C++方法只有在投向基级时才会明显?
原标题:C++ method only visible when object cast to base class?
  • 时间:2010-01-14 22:40:42
  •  标签:
  • c++

这必须是我的法典中的具体内容,我可以这样做。 但也许有人可以提出可能的原因。

基本上我有:

class CParent
{
 public:
  void doIt(int x);
};
class CChild : public CParent
{
 public:
  void doIt(int x,int y,int z);
};

CChild *pChild = ...
pChild->doIt(123); //FAILS compiler, no method found
CParent *pParent = pChild;
pParent->doIt(123); //works fine

地球如何?

EDIT:人们谈论的是影子/ding。 但两种版本的参数各不相同。 当然,这可能会使汇编者混淆起来,在儿童课堂上超负荷,可能与父母的班级相混淆? 这样做吗?

The compiler error I get is: error C2660: CChild::doIt : function does not take 1 argument

最佳回答

你投下了一种方法。 例如:

struct base
{
    void method(int);
    void method(float);
};

struct derived : base
{
    void method(int);
    // base::method(int) is not visible.
    // base::method(float) is not visible.
};

可通过<条码>使用指令加以确定:

class derived : public base
{
    using base::method; // bring all of them in.

    void method(int);
    // base::method(int) is not visible.
    // base::method(float) is visible.
};

www.un.org/Depts/DGACM/index_spanish.htm 既然你似乎坚持对参数的数量,我就这样说。 That don t change any. 观察:

struct base
{
    void method(int){}
};

struct derived : base
{
    void method(int,int){}
    // method(int) is not visible.
};

struct derived_fixed : base
{
    using base::method;
    void method(int,int){}
};

int main(void)
{
    {
        derived d;

        d.method(1, 2); // will compile
        d.method(3); // will NOT compile
    }
    {
        derived_fixed d;

        d.method(1, 2); // will compile
        d.method(3); // will compile
    }
}

页: 1 不管其参数或返回类型如何,这种阴影只是,即。 <编码>使用基数:<x>将使所有<编码>底线><>代码>>、<编码>、>、x>方法都广为人知。

问题回答

你们正在遭遇一个典型的问题。 页: 1 我恳请大家回答重复的问题。

Edit:

在此,我对基本上相同的问题的答复:

我从未这样做过,没有在基类之前采用这种方法。 我认为,在衍生产品类别中增加“使用CLAS:METHOD”将使你能够使用其他超载方法。

class CParent
{
 public:
  void doIt(int x);
};
class CChild : public CParent
{
 public:
  void doIt(int x,int y,int z);

  using CParent::doIt;
};

问题在于<代码> 确实从<代码>CParent继承。

因此,它没有一种只有一种理由的<代码>doIt方法。

当你在衍生类别中超越功能时,该类使用者只看到该功能。 基础班级版本是隐蔽的。

因此,由于你正在使用一个衍生的班子来称基级功能,因此,你叫做Chat(int x)的孩子会失败。 呼呼呼呼声(int x)的Parent Pointer将工作,因为你正在使用一个基类点子来称基类功能。 即便是父母一方(经预测)指明了孩子的物体,此处的类别则由作为葡语国家的人的申报确定。

为了能够使用衍生的班子来称这一基类功能,你可以:

  1. 在职能要求中限定基类名称如下:

    pChild->CParent::doIt(123);

  2. 采用指令,将功能名称从基类带入衍生类别,如以往员额所示。

我的理解是,这一行为是为了给你以灵活性,在你的产阶级中超越基类方法的行为。

让我们假设,你在基类中具有职能疏漏,你想改变这一职能在你的衍生类别中的行为。 如果基类方法没有被你的衍生类别方法所掩盖(该方法的原型与基类方法的原型相同),就会在超负荷分辨率中产生模糊性。

子女阶级的方法与你试图通过的方法有不同的论据。 这是否与此相关?





相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签