1

我正在用 c++/cli 编写一个程序,它给了我错误:错误 C2872: 'String' : ambiguous symbol

我使用 String 作为函数的一部分: Dictionary<String^, List<array< Byte >^>^>^ FalseTrigg(Dictionary<String^, String^>^ imgParms, bool windowOn)

下面是整体方案。谢谢你的帮助。

 #include <errno.h>
 #include <vector>
 #include <string>
 #include <iostream>
 #include <sstream>
 #include <string>
 #include <fstream>

 #pragma managed(push, off)

 #include "cv.h" 
 #include "highgui.h" 
 #include <stdio.h>
 #include "opencv2/core/core.hpp"
 #include "opencv2/features2d/features2d.hpp"
 #include "opencv2/highgui/highgui.hpp"
 #include "opencv2/nonfree/nonfree.hpp"
 #include <opencv2/nonfree/features2d.hpp>

 #pragma managed(pop)

 using namespace cv;
 using namespace std;
 using namespace System;
 using namespace System::Collections::Generic;
 using namespace System::Runtime::InteropServices;


 public ref class FalseTrig
{
  public:
  FalseTrig() { } 
  ~FalseTrig() { } 

  Dictionary<String^, List<array< Byte >^>^>^ FalseTrigg(Dictionary<String^, String^>^ imgParms, bool windowOn) 
  {}
};
4

2 回答 2

3

String 类有两个定义,编译器不知道你需要哪一个。错误消息应该有更多行,其中将列出它找到的各种“字符串”类。

我不确定它找到了哪些定义,因为std::string应该是小写的“s”,而您使用的是大写的“S”。

在您的方法定义中,只需替换String^System::String^,您应该会很好。

或者,您可以找出它正在查找的“字符串”类,并将using namespace指令更改为不使用包含其他字符串类的命名空间。您还可以使用 typedef 来String明确引用System::String.

于 2013-04-30T18:49:00.383 回答
-1

看起来您已经包含了两次 String 的定义。

#include <errno.h>
#include <vector>
#include <string>  //-> First time
#include <iostream>
#include <sstream>
#include <string>  //-> Second time
#include <fstream>
于 2013-04-30T18:40:15.310 回答