第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

無(wú)法解決“類型參數(shù)不在類型變量范圍內(nèi)”錯(cuò)誤

無(wú)法解決“類型參數(shù)不在類型變量范圍內(nèi)”錯(cuò)誤

偶然的你 2023-09-06 16:57:02
我有一個(gè)通用類ShortestPathVertex,它實(shí)現(xiàn)Comparable:public class ShortestPathVertex<E extends Number> implements VertexInterface, Comparable<ShortestPathVertex<E>>另一個(gè)MinPriorityQueue需要Comparable類型參數(shù)的泛型類:public class MinPriorityQueue<T extends Comparable<T>>我需要?jiǎng)?chuàng)建一個(gè)MinPriorityQueue實(shí)例作為ShortestPathVertex類型參數(shù):public static <E extends Number, T extends ShortestPathVertex<E>> void Dijkstra(WeightedDirectedGraph<T, E> G, int s) {        MinPriorityQueue<T> Q = new MinPriorityQueue<>(G.getVertices(), G.V()); // error}當(dāng)我編譯時(shí)它拋出錯(cuò)誤:ShortestPath.java:60: error: type argument T#1 is not within bounds of type-variable T#2        MinPriorityQueue<T> Q = new MinPriorityQueue<>(G.getVertices(), G.V());                         ^  where T#1,E,T#2 are type-variables:    T#1 extends ShortestPathVertex<E> declared in method <E,T#1>Dijkstra(WeightedDirectedGraph<T#1,E>,int)    E extends Number declared in method <E,T#1>Dijkstra(WeightedDirectedGraph<T#1,E>,int)    T#2 extends Comparable<T#2> declared in class MinPriorityQueueShortestPath.java:60: error: cannot infer type arguments for MinPriorityQueue<>        MinPriorityQueue<T> Q = new MinPriorityQueue<>(G.getVertices(), G.V());                                ^2 errors考慮到該ShortestPathVertex工具,Comparable我不明白它在抱怨什么。為什么說(shuō)這ShortestPathVertex不在范圍內(nèi)Comparable,我該如何解決它。我正在使用Java 7.0。
查看完整描述

1 回答

?
慕的地10843

TA貢獻(xiàn)1785條經(jīng)驗(yàn) 獲得超8個(gè)贊

改變這一行

public class MinPriorityQueue<T extends Comparable<T>>

對(duì)此:

public class MinPriorityQueue<T extends Comparable<? super T>>

這里的問(wèn)題是T extends ShortestPathVertex<E>在方法中Dijkstra,所以T不需要Comparable直接實(shí)現(xiàn)。但這在您的版本中是必要的MinPriorityQueue。我的改變解決了這個(gè)問(wèn)題。

說(shuō)明:是實(shí)現(xiàn) 的子In MinPriorityQueue<T> Q = ... T類型。這意味著與 type 的值(它是 的超類型)相當(dāng)。但在您的版本中,您定義它必須與同一類型相當(dāng)。如果您還想接受超類型,則必須通過(guò) 定義它。ShortestPathVertex<E>Comparable<ShortestPathVertex<E>>TShortestPathVertex<E>TMinPriorityQueueTT<? super T>

您可以嘗試(僅用于演示):在方法中Dijkstra替換每次出現(xiàn)的Tby ShortestPathVertex<E>。這也適用于更簡(jiǎn)單的 class 定義MinPriorityQueue。

這種方式使用的另一個(gè)例子super:查看Collections.binarySearchJava類庫(kù)中的方法。


查看完整回答
反對(duì) 回復(fù) 2023-09-06
  • 1 回答
  • 0 關(guān)注
  • 463 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)