0
votes
0
comments
1,870
views

why can’t byte array be stored in integer array in java

0 votes, 0.00 avg. rating (0% score)
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
601
views

Should I be disabling Java?

0 votes, 0.00 avg. rating (0% score)
First it was Apple, now it’s the US government… U.S. urges users to disable Java; Apple disables some remotely New malware exploiting Java 7 in Windows and Unix systems How serious is this “unspecified vulnerability”? Should all users be disabling Java until we know things have been patched?   Ali Ahmad Apple apparently takes this […]