Reputation: 2254
AFAIK, java stores ints in memory in big-endian format. And my intel processor uses little-endian.
Where does the conversion takes place? Does it take place? How JVM developers settle performance issues?
Upvotes: 2
Views: 424
Reputation: 4010
The JVM running on your Intel stores int as little-endian.
int
Upvotes: 3