标题:1>e:\程序\c++\tbar_foo\tbar_foo\Bar_Foo.h(20) : error C2059: 语法错误 ...
取消只看楼主
陈子风
Rank: 1
等 级:新手上路
帖 子:17
专家分:0
注 册:2008-3-20
 问题点数:0 回复次数:3 
1>e:\程序\c++\tbar_foo\tbar_foo\Bar_Foo.h(20) : error C2059: 语法错误 : “常量”
#include<iostream>
using namespace std;
class Foo
{
public:
    Foo(int f)
    {  fooval=f;  }
    int GetVal()
    {
        return fooval;
    }
private:
    int fooval;
    friend class Bar;
};
class Bar
{
private:
    //static  int barval;
    static Foo foo(5);
    int callsFooVal;
public:
    Bar()
    {
        callsFooVal=0;
    }
    
};


1>e:\程序\c++\tbar_foo\tbar_foo\Bar_Foo.h(20) : error C2059: 语法错误 : “常量”

不知道错哪里了    哪位高手指点一下
搜索更多相关主题的帖子: foo Foo 常量 tbar Bar 
2008-05-17 19:44
陈子风
Rank: 1
等 级:新手上路
帖 子:17
专家分:0
注 册:2008-3-20
得分:0 
static Foo foo(5);处
2008-05-17 19:54
陈子风
Rank: 1
等 级:新手上路
帖 子:17
专家分:0
注 册:2008-3-20
得分:0 
不太明白,能否解释清楚点儿。改成这样为什么就没有编译错误呢:

#include<iostream>
using namespace std;
class Foo
{
public:
    //Foo(int f)      
   // {  fooval=f;  }   去掉构造方法
    int GetVal()
    {
        return fooval;
    }
private:
    int fooval;
    friend class Bar;
};
class Bar
{
private:
    //static  int barval;
    static Foo foo;       //static Foo foo(5);
    int callsFooVal;
public:
    Bar()
    {
        callsFooVal=0;
    }
   
};
2008-05-18 18:00
陈子风
Rank: 1
等 级:新手上路
帖 子:17
专家分:0
注 册:2008-3-20
得分:0 
这是C++ primer 书中的一道题目,“给上题中定义的Foo类定义另一个类Bar类。

bar类具有两个static数据成员:一个为int型,另一个为Foo类型。

顺便问一下,谁有《C++ Primer》书后面习题的答案的啊。可以发给我吗?

wangpengjl@

谢谢!
2008-05-18 22:29



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-214793-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.127607 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved