c++2008 _不能将参数 1 从“long”转换为“System::String ^”
跪求高手如何转换?精简代码:private:System::Voidtimer1_Tick(System::Object^sender,System::EventArgs...
跪求高手如何转换? 精简代码:
private: System::Void timer1_Tick(System::Object^ sender, System::EventArgs^ e)
{
long n=1;
this->label1 ->Text =n;
}
//------ 已启动生成: 项目: Windows, 配置: Debug Win32 ------
正在编译...
d:\my documents\visual studio 2008\projects\windows\windows\Form1.h(150) : error C2664: “void System::Windows::Forms::Control::Text::set(System::String ^)”: 不能将参数 1 从“long”转换为“System::String ^”
没有用户定义的转换运算符,或者
不存在从装箱形式的算术类型到目标类型的标准转换 展开
private: System::Void timer1_Tick(System::Object^ sender, System::EventArgs^ e)
{
long n=1;
this->label1 ->Text =n;
}
//------ 已启动生成: 项目: Windows, 配置: Debug Win32 ------
正在编译...
d:\my documents\visual studio 2008\projects\windows\windows\Form1.h(150) : error C2664: “void System::Windows::Forms::Control::Text::set(System::String ^)”: 不能将参数 1 从“long”转换为“System::String ^”
没有用户定义的转换运算符,或者
不存在从装箱形式的算术类型到目标类型的标准转换 展开
展开全部
this->label1 ->Text = n.ToString();
数字和文字,没有本质上的转换关系。
3.1415926 和 "3.1415926" 是不一样的。
这需要一定时间才能理解,但概念浅显易懂。
数字和文字,没有本质上的转换关系。
3.1415926 和 "3.1415926" 是不一样的。
这需要一定时间才能理解,但概念浅显易懂。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
先把n进行一次字符串格式化后再赋值。
long n=1;
CString temp;
temp. Format("%l",n);
this->label1 ->Text =temp;
希望对您有用 by fishmin2005
long n=1;
CString temp;
temp. Format("%l",n);
this->label1 ->Text =temp;
希望对您有用 by fishmin2005
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
this->label1 ->Text = n.ToString();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询