免费注册 查看新帖 |

Chinaunix

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

错误:enum' type redefinition [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-06-26 05:26 |只看该作者 |倒序浏览
大家好:

我在调试程序时,出现以下错误:
ClassificationMethod' : 'enum' type redefinition

我不知道什么原因,希望大家能帮我看看


# include "stdafx.h"

#include "FMUtils.h"
#include "FeatureVector.h"
# include "FeatureExtractor.h"
#include "ClassLabel.h"
#include "ClassLabelHistogram.h"
#include "Classifier.h"
#include "ExtraTreeClassifier.h"
#include "SvmClassifier.h"
#include "PDF.h"
#include "DecisionNode.h"
#include "TerminalNode.h"
#include <Magick++.h>
# include<cmath>
#include <string.h>
#include<iostream>
#include<fstream>
#include<sstream>
using namespace std;
using namespace Magick;

enum ClassificationMethod
{CM_EXTRA_TREE_SINGLE_ATT, CM_EXTRA_TREE_SOFT_THRESHOLD, CM_EXTRA_TREE_COMPARE_ATT, CM_SVM};

..............

...........


我的<stdafx.h>,内容如下:

#pragma once

#include "targetver.h"

#include <stdio.h>
#include <tchar.h>

论坛徽章:
0
2 [报告]
发表于 2009-06-26 08:31 |只看该作者
头文件没有进行重复处理,
如果是C++,不妨加上:
#pragma once
或者用宏

#ifndef __H__
#define __H__
#endif
防止头文件被多次引用。

论坛徽章:
0
3 [报告]
发表于 2009-06-26 09:17 |只看该作者
重定义了,检查一下头文件

论坛徽章:
0
4 [报告]
发表于 2009-06-26 09:54 |只看该作者
#include <string.h>

using namespace std;
会不会出问题,应该是
#include <Cstring>

using namespace std;
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP