0
votes
0
comments
1,927
views
why can’t byte array be stored in integer array in java
This code is valid int h; byte r; h=r; but these are not int[] h; byte[] r; h=r; or say int[] h =new byte[4]; I would like to know why? Nav There’s an implicit conversion from byte to int, but not from byte[] to int[]. This makes a lot of sense – the JIT compiler […]0
votes
0
comments
662
views