解決java.lang.ClassCastException的java類(lèi)型轉(zhuǎn)換異常的問(wèn)題
在項(xiàng)目中,需要使用XStream將xml string轉(zhuǎn)成相應(yīng)的對(duì)象,卻報(bào)出了java.lang.ClassCastException: com.model.test cannot be cast to com.model.test的錯(cuò)誤。
原因:
項(xiàng)目中應(yīng)該是采用了熱部署,devtools,因?yàn)槔奂虞d器的不同所以會(huì)導(dǎo)致類(lèi)型轉(zhuǎn)換失敗
措施:
在pom.xml中將以下代碼注釋掉:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> </dependency>
補(bǔ)充知識(shí):TreeSet在add對(duì)象時(shí)報(bào)ClassCastException錯(cuò)誤
TreeSet實(shí)現(xiàn)了SortedSet接口,可以對(duì)集合中的對(duì)象進(jìn)行排序,但是在使用TreeSet時(shí)要注意一點(diǎn),那就是要給TreeSet傳遞一個(gè)比較器,也就是指定比較規(guī)則,否則的話,它就不知道誰(shuí)大誰(shuí)小,也就不能排序了。此時(shí)它會(huì)報(bào)一個(gè)ClassCastException的異常。
jdk1.6文檔里add方法關(guān)于這個(gè)異常是這樣描述的:
Throws:
ClassCastException - if the specified object cannot be compared with the elements currently in this set
翻譯:ClassCastException - 如果指定的對(duì)象不能與當(dāng)前在此集合中的元素進(jìn)行比較
public class TreeSetTest{ public static void main(String[] args) { MyComparator comparator = new MyComparator(); // TreeSet<Student> set = new TreeSet<Student>(comparator); // 錯(cuò)誤的代碼,少了比較器,運(yùn)行則報(bào)下面的異常。 TreeSet<Student> set = new TreeSet<Student>(); Student s1 = new Student(50); Student s2 = new Student(70); Student s3 = new Student(40); set.add(s1); set.add(s2); set.add(s3); System.out.println(set); }}class Student { int score; public Student(int score) { this.score = score; } @Override public String toString() { // TODO Auto-generated method stub return String.valueOf(this.score); }}class MyComparator implements Comparator<Student>{ @Override //按分?jǐn)?shù)高低比較,int為返回負(fù)數(shù)、零、整數(shù),這里我寫(xiě)的不咋好,但意思一樣 public int compare(Student o1, Student o2) { // TODO Auto-generated method stub int result = 0; if(o1.score > o2.score) { result = 1; }else { result = -1; } return result; }}
錯(cuò)誤的運(yùn)行結(jié)果:
Exception in thread 'main' java.lang.ClassCastException: com.shengsiyuan2.Student cannot be cast to java.lang.Comparable at java.util.TreeMap.compare(TreeMap.java:1294) at java.util.TreeMap.put(TreeMap.java:538) at java.util.TreeSet.add(TreeSet.java:255) at com.shengsiyuan2.TreeSetTest.main(TreeSetTest.java:17)
解決辦法:
把 TreeSet set = new TreeSet(); 改成:TreeSet set = new TreeSet(comparator);即可。
以上這篇解決java.lang.ClassCastException的java類(lèi)型轉(zhuǎn)換異常的問(wèn)題就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. 基于javaweb+jsp實(shí)現(xiàn)學(xué)生宿舍管理系統(tǒng)2. 如何封裝一個(gè)Ajax函數(shù)3. 多級(jí)聯(lián)動(dòng)下拉選擇框,動(dòng)態(tài)獲取下一級(jí)4. ASP.NET MVC實(shí)現(xiàn)樹(shù)形導(dǎo)航菜單5. 什么是JWT超詳細(xì)講解6. python 在mysql中插入null空值的操作7. Python爬蟲(chóng)基礎(chǔ)之初次使用scrapy爬蟲(chóng)實(shí)例8. .NET Core中RabbitMQ使用死信隊(duì)列的實(shí)現(xiàn)9. Python如何telnet到網(wǎng)絡(luò)設(shè)備10. 關(guān)于html嵌入xml數(shù)據(jù)島如何穿過(guò)樹(shù)形結(jié)構(gòu)關(guān)系的問(wèn)題
