鱼C论坛

 找回密码
 立即注册
查看: 1496|回复: 1

c++对象指针问题

[复制链接]
发表于 2015-1-31 13:06:17 | 显示全部楼层 |阅读模式
1鱼币
本帖最后由 erool950 于 2015-1-31 13:33 编辑

#include<iostream>
using namespace std;
class B
{
public:
    B()
    {
        length=1; width=1; height=1;
        cout<<"B constructor is executed!"<<endl;
    }
    void show()
    {
        cout<<"length:"<<length<<endl;
        cout<<"width:"<<width<<endl;
        cout<<"height"<<height<<endl;
    }
    ~B()
    {
        cout<<"asdjoasdj"<<endl;
    }
private:
    float length,width,height;
};

int main()
{
    B b;
    B * p=&b;
    cout<<(*p).show()<<endl;
    return 0;
}

提示    cout<<(*p).show()<<endl;  这句有问题    no match for 'operator<<' in 'std::cout << p->B::show()'

最佳答案

查看完整内容

int main() { B b; B * p=&b; (*p).show(); return 0; }
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2015-1-31 13:06:18 | 显示全部楼层
int main()
{
    B b;
    B * p=&b;
    (*p).show();
    return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-25 15:58

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表