Can I do this in Java?
At Runtime:
int length
= some arithmetic that loads length
then I use length to do this:开发者_Go百科
byte [] b = new byte[length];
Will this throw an Exception at Runtime? If so which one?
No that won't throw an exception at runtime, unless of course length is negative.
Yes it can be created at run time.
But you should try and see :)
i think you are forgetting the basic concept as objects are created at comile time and memory is allocated at run time.
精彩评论