- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试做一些基本的 char16_t
字符串 (u16string
) 处理,但遇到了一些麻烦。这个小程序:
#include <string>
#include <sstream>
int main()
{
int foo = 65;
std::basic_stringstream<char16_t> ss;
ss << foo;
std::u16string s = ss.str();
}
创建错误:
Error C2491 'std::numpunct<_Elem>::id': definition of dllimport static data member not allowed. xlocnum 259
我已经在一些在线编译器上试过了,但是那里没有错误。
感谢我能得到的任何帮助!
最佳答案
好的,它看起来像是 VC++ 标准库或 VC++ 编译器中的错误,甚至可能是两者中的错误。
class numpunct
中声明:
__PURE_APPDOMAIN_GLOBAL _CRTIMP2_PURE static locale::id id; // unique facet id
template<class _Elem>
__PURE_APPDOMAIN_GLOBAL locale::id numpunct<_Elem>::id;
_CRTIMP2_PURE
定义为 _CRTIMP2
,后者又定义为 __declspec(dllimport)
。
现在,根据我对VC++文档的阅读,应该可以了。 __declspec(dllimport)
允许用于静态声明。但是,静态定义 不允许这样做。但是定义没有 __declspec(dllimport)
,只有声明有。
尽管如此,还是会产生错误:编译器正在查看定义,将其视为 __declspec(dllimport)
,并产生错误。 p>
我不确定是编译器错误还是库错误的原因是编译器还会发出警告,提示声明和定义不匹配——那个是 __declspec(dllimport)
而另一个则不是。由于根据文档,定义不能是 __declspec(dllimport)
,这对我来说意味着 既不 声明 也不 定义应该是 __declspec(dllimport)
。
如果我们看看其他类似的成员,就会证实这种怀疑。例如,num_get::id
不是 _CRTIMP2_PURE
,num_put::id
也不是。
所以我认为有两种可能。一是 _CRTIMP2_PURE
有误,应该将其删除。另一个是编译器在声称定义为 __declspec(dllimport)
时发出错误诊断,而实际上它不是。
无论哪种方式,我认为代码示例应该可以编译,这是 Microsoft 需要解决的问题。
关于c++ - 在 VC++14 中使用 std::basic_stringstream<char16_t> 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32002653/
我只是尝试使用 UTF-8 格式的 stringstream: #include #include #include int main() { std::basic_stringstream
我在 Qt IDE 上的 Windows 中编写了以下代码,当我运行它时,它运行良好,但是当我尝试在 centOS 上运行它时,我想使用线程运行代码,我只是在其中尝试加载 CSV 文件并将结果写入 c
我正在尝试做一些基本的 char16_t 字符串 (u16string) 处理,但遇到了一些麻烦。这个小程序: #include #include int main() { int foo
我是一名优秀的程序员,十分优秀!