java float转intString转int失败是什么异常

安全检查中...
请打开浏览器的javascript,然后刷新浏览器
< 浏览器安全检查中...
还剩 5 秒&2008年2月 总版技术专家分月排行榜第一2008年1月 总版技术专家分月排行榜第一
2008年7月 总版技术专家分月排行榜第三2008年6月 总版技术专家分月排行榜第三
本帖子已过去太久远了,不再提供回复功能。JAVA int 强制类型转换错误提示(Cannot cast from Object to int)
我的图书馆
JAVA int 强制类型转换错误提示(Cannot cast from Object to int)
在将ANDROID源码导入eclipse时,出错提示如下:
&&&&public
void addActiveCid(int cid) {
&&&&&&&&if
(cidActiveList == null) {
&&&&&&&&&&&&cidActiveList
= new ArrayList();
&&&&&&&&for
(int i=0;i
&&&&&&&&&&&&if(cid
== cidActiveList.get(i)) {&&&&&&&&&&&&&&&&&//
&&&&&&&&&&&&&&&&
&&&&&&&&&&&&}
&&&&&&&&cidActiveList.add(cid);
&&&&&&&&Log.d(LOG_TAG,
"[" + phone.getPhoneId() + "]addActiveCid("+cid+") cidActive("+cidActive+") List("+cidActiveList+")");
&&&&public
void removeActiveCid(int cid) {
&&&&&&&&if
(cidActiveList != null) {
&&&&&&&&&&&&for
(int i=0;i
&&&&&&&&&&&&&&&&if(cid
== cidActiveList.get(i))&{&&&&&&&&&&//
&&&&&&&&&&&&&&&&&&&&cidActiveList.remove(i);
&&&&&&&&&&&&&&&&}
&&&&&&&&&&&&}
Incompatible operand types int and Object&&&&DataConnectionTracker.java&&&/check/frameworks/base/telephony/java/com/android/internal/telephony&&&&line
657&&&&Java
Incompatible operand types int and Object&&&&DataConnectionTracker.java&&&/check/frameworks/base/telephony/java/com/android/internal/telephony&&&&line
667&&&&Java
== cidActiveList.get(i))加入强制转换int后,即
&&&&&&&&&&&if(cid
==&(int)cidActiveList.get(i))
又出现如下错误提示:
Cannot cast from Object to int&&&&DataConnectionTracker.java&&&/check/frameworks/base/telephony/java/com/android/internal/telephony&&&&line
657&&&&Java
最后在网上找了一翻,最终改为如下, 即问题解决。
&&&&&&&&if(cid
== (Integer)cidActiveList.get(i))
特此记录,以备后忘。(int) (v.getTag())& ==》(Integer) (v.getTag())
馆藏&23937
TA的最新馆藏
喜欢该文的人也喜欢浅述int与string类型转换的两种方法
作者:进击的码农
字体:[ ] 类型:转载 时间:
这篇文章主要介绍了Java中int与string类型转换的两种方法的相关资料,需要的朋友可以参考下
具体详情如下所示:
int -& String
int i=12345;
String s="";
第一种方法:s=i+"";
第二种方法:s=String.valueOf(i);
这两种方法有什么区别呢?作用是不是一样的呢?是不是在任何下都能互换呢?
String -& int
s="12345";
第一种方法:i=Integer.parseInt(s);
第二种方法:i=Integer.valueOf(s).intValue();
这两种方法有什么区别呢?作用是不是一样的呢?是不是在任何下都能互换呢?
以下是答案:
第一种方法:s=i+""; //会产生两个String对象
第二种方法:s=String.valueOf(i); //直接使用String类的静态方法,只产生一个对象
第一种方法:i=Integer.parseInt(s);//直接使用静态方法,不会产生多余的对象,但会抛出异常
第二种方法:i=Integer.valueOf(s).intValue();//Integer.valueOf(s) 相当于 new Integer(Integer.parseInt(s)),也会抛异常,但会多产生一个对象
--------------------------------------------------------------------
1如何将字串 String 转换成整数 int&#63;
A. 有两个方法:
1). int i = Integer.parseInt([String]); 或
i = Integer.parseInt([String],[int radix]);
2). int i = Integer.valueOf(my_str).intValue();
注: 字串转成 Double, Float, Long 的方法大同小异.
2 如何将整数 int 转换成字串 String &#63;
A. 有叁种方法:
1.) String s = String.valueOf(i);
2.) String s = Integer.toString(i);
3.) String s = "" +
注: Double, Float, Long 转成字串的方法大同小异.
JAVA数据类型转换
这是一个例子,说的是JAVA中数据数型的转换.供大家学习
import java.sql.D
public class TypeChange {
public TypeChange() {
//change the string type to the int type
public static int stringToInt(String intstr)
integer = Integer.valueOf(intstr);
return integer.intValue();
//change int type to the string type
public static String intToString(int value)
Integer integer = new Integer(value);
return integer.toString();
//change the string type to the float type
public static float stringToFloat(String floatstr)
floatee = Float.valueOf(floatstr);
return floatee.floatValue();
//change the float type to the string type
public static String floatToString(float value)
Float floatee = new Float(value);
return floatee.toString();
//change the string type to the sqlDate type
public static java.sql.Date stringToDate(String dateStr)
return java.sql.Date.valueOf(dateStr);
//change the sqlDate type to the string type
public static String dateToString(java.sql.Date datee)
return datee.toString();
public static void main(String[] args)
java.sql.D
day = TypeChange.stringToDate("");
String strday = TypeChange.dateToString(day);
System.out.println(strday);
以上内容是小编给大家介绍的int与string类型转换的两种方法,希望能够帮助到大家。
您可能感兴趣的文章:
大家感兴趣的内容
12345678910
最近更新的内容
常用在线小工具2016年9月 Java大版内专家分月排行榜第三
2017年2月 Java大版内专家分月排行榜第二2017年1月 Java大版内专家分月排行榜第二2016年7月 Java大版内专家分月排行榜第二
2016年12月 Java大版内专家分月排行榜第三2016年10月 Java大版内专家分月排行榜第三2016年8月 Java大版内专家分月排行榜第三
2017年2月 Java大版内专家分月排行榜第二2017年1月 Java大版内专家分月排行榜第二2016年7月 Java大版内专家分月排行榜第二
2016年12月 Java大版内专家分月排行榜第三2016年10月 Java大版内专家分月排行榜第三2016年8月 Java大版内专家分月排行榜第三
2017年2月 Java大版内专家分月排行榜第二2017年1月 Java大版内专家分月排行榜第二2016年7月 Java大版内专家分月排行榜第二
2016年12月 Java大版内专家分月排行榜第三2016年10月 Java大版内专家分月排行榜第三2016年8月 Java大版内专家分月排行榜第三
匿名用户不能发表回复!|
每天回帖即可获得10分可用分!小技巧:
你还可以输入10000个字符
(Ctrl+Enter)
请遵守CSDN,不得违反国家法律法规。
转载文章请注明出自“CSDN(www.csdn.net)”。如是商业用途请联系原作者。

我要回帖

更多关于 java 字符串转int 的文章

 

随机推荐