码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA 强制类型转换错误提示

时间:2016-02-20 14:32:10      阅读:329      评论:0      收藏:0      [点我收藏+]

标签:

public float findPriceByIsbn(String isbn) {
String hql="select b.price from Book b where b.isbn=?";
float price=(float)getSession().createQuery(hql).setString(0, isbn).uniqueResult();
return price;
}

在做类型强势转换拿时将要强制转换的类型写成一般的数据类型报错Cannot cast from Object to float,

后来改为

public float findPriceByIsbn(String isbn) {
String hql="select b.price from Book b where b.isbn=?";
float price=(Float)getSession().createQuery(hql).setString(0, isbn).uniqueResult();
return price;
}

在做强制转换时,float——>Float, int——>Integer

记录错误。

JAVA 强制类型转换错误提示

标签:

原文地址:http://www.cnblogs.com/blueicejing/p/5203199.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!