编译器错误 C2440

发布于 2024-12-12 13:21:31 字数 315 浏览 0 评论 0原文

我的编译器中出现错误 c2440,但我无法找出导致该错误的原因。

这是错误:

Error 2 error C2440: 'initializing' : cannot convert from 'int' to 'System::String ^'   c:\users\***.****\documents\visual studio 2005\projects\cpas1\cpas1\Form1.h 1083

这是相关代码:

String *strFilename = 0;

I am getting error c2440 in my compiler but I cannot figure out what is causing it.

This is the error:

Error 2 error C2440: 'initializing' : cannot convert from 'int' to 'System::String ^'   c:\users\***.****\documents\visual studio 2005\projects\cpas1\cpas1\Form1.h 1083

and this is the relevant code:

String *strFilename = 0;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

无力看清 2024-12-19 13:21:31

托管类型在托管 C++ 中使用时,不使用星号(即 *),相反,我相信它们被称为跟踪句柄(即 ^)。
因此,你的声明应该这样写:

String^ strFilename = nullptr;

Managed types, when used in Managed C++, don't use stars (i.e. *), instead I believe they are called tracking handles (i.e. ^).
As such your statement should be written like this:

String^ strFilename = nullptr;
明天过后 2024-12-19 13:21:31
String *strFilename = "0";

不是

String *strFilename = 0; 
String *strFilename = "0";

not

String *strFilename = 0; 
拔了角的鹿 2024-12-19 13:21:31

System::String 是一个托管类。我相信,您必须使用 nullptr 关键字来初始化它。

System::String is a managed class. You must use nullptr keyword, I believe, to initialize it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文