i know that any kind of array is object. But i am facing a basic problem and i am not understanding it. now i am explaing it:
when we made an object of non-primitive data type, at first we write a class. the name of the class is a new type now.then we write,
type name = new type();
to make an objet of that type. but in case of int type or byte type array, we write,
byte[] name = new byte[5];.....
so, i think there should be a class nemed "byte[]". my question is, is there any class names "byte[]" in java.lang?? if not, in which way the array object is created? which class is called? what is thats type?if you can please explain, it will be very helpful for me. Thank you very much.