免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2454 | 回复: 1
打印 上一主题 下一主题

模板方法中嵌入分开定义的命名空间,编译时说unexpected [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-12-02 17:01 |只看该作者 |倒序浏览
头文件A.hpp

namespace nc{
template <typename T>  
        class my_ptr{
        public:  

                my_ptr(T* p):ptr(p){
                        ref_cnt = new int(0);    (*ref_cnt)++;
                }
...
};
}

头文件B.hpp
namespace nc{
class Context{
...
};
}

在头文件MObject.hpp中(这里没有写include):
class MObject{
public:
        void setContext(nc::my_ptr<nc::Context> &);
.....
};

在MObjectImpl.cpp中:
#include "A.hpp"
#include "B.hpp"
#include "MObject.hpp"
using namespace nc;

void MObject::setContext(my_ptr<Context> & _ctx){
        this->_ctx = _ctx;
}
....

这样,结果编译时报:

MObject.hpp, line 3.41: 1540-0063 (S) The text "nc::Context" is unexpected.

请问错在哪?实现中已经声明,按头文件定义顺序应该是可以找到啊。

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
2 [报告]
发表于 2011-12-10 15:46 |只看该作者
我根据你的代码,在linux上用g++编译没有问题。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP