c:if标签中怎么把int转换成string
问题已经解决了,自己犯2了,commareaname是个对象,areaname是个list,这怎么比得出来,外面加了个forEach迭代了下areaname就能比较了,还...
问题已经解决了,自己犯2了,commareaname是个对象,areaname是个list,这怎么比得出来,外面加了个forEach迭代了下areaname就能比较了,还是谢谢大家
展开
2015-08-05 · 知道合伙人数码行家
关注
展开全部
可以使用下面两个办法:
方法一:
#include <iostream>
#include <string>
using namespace std; 使用标准空间命名
int main()
{
int n = 65535;
char t[256];
string s;
sprintf(t, "%d", n);
s = t;
cout << s << endl;
return 0;返回的值
}
方法二:
#include <iostream>
#include <string>
#include <strstream>
using namespace std;使用标准空间命名
int main()
{
int n = 65535;
strstream ss;
string s;
ss << n;
ss >> s;
cout << s << endl;
return 0; 返回的值
}
方法一:
#include <iostream>
#include <string>
using namespace std; 使用标准空间命名
int main()
{
int n = 65535;
char t[256];
string s;
sprintf(t, "%d", n);
s = t;
cout << s << endl;
return 0;返回的值
}
方法二:
#include <iostream>
#include <string>
#include <strstream>
using namespace std;使用标准空间命名
int main()
{
int n = 65535;
strstream ss;
string s;
ss << n;
ss >> s;
cout << s << endl;
return 0; 返回的值
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在java里转,不要在c:if里转嘛
Integer integer = new Integer(你的int);
integer.toString();
Integer integer = new Integer(你的int);
integer.toString();
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<c:if test="${commarean.trim() eq '000'}">
这样就OK了
这样就OK了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在后台转换ok了 在到前台显示
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询