This not normal
List<List<? extends Number>> a; List<List<Integer>> b; a = b;
This is normal
List<? extends Number> c; List<Integer> d; c = d;
How to make it the first to compile?
You can use this:
List<? extends List<? extends Number>> a; List<List<Integer>> b; a = b;
List<? extends List<? extends Number>> a = null; List<List<Integer>> b = null; a = b;
Source: https://habr.com/ru/post/1399797/More articles:The easiest way to change the contents of an eBay / DOM page is c #Capturing MouseExit event on EmberJS - ember.jsOsmdroid - change the local map folder - androidHow to make a proper call from Android to non-static function in Java? (Cocos2Dx in the mix) - androidException when printing server certificate information - javaXcode Style Font Set - objective-cCan someone clarify covariant return types in Java (6)? - javaReceive confirmation on send / emit server - socket.ioRender YUV video to OpenGL from ffmpeg using CVPixelBufferRef and shaders - ffmpeghttps://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1399803/svn-remove-local-files-retain-in-repository&usg=ALkJrhiQWcvQqHghbZ90vQ4W4R9mivO-PQAll Articles