View Single Post
  #2 (permalink)  
Old 01-08-2008, 09:20 AM
roots's Avatar
roots roots is offline
Moderator
 
Join Date: Jan 2008
Location: Dallas
Posts: 263
roots is on a distinguished road
Code:
public class FileStructure { public static void main(String[] args) throws Exception { Object data[] = new Object[150]; for(int i = 0 ; i < 150 ; i ++){ data[i] = (short)43 ; // It is just an example /* * Autoboxing allows you to add any primitive char and bytes ... */ } for(int i = 0 ; i < 150 ; i ++){ if(data[i] instanceof Short ){ System.out.println("Short Data :" + data[i]); } // Similarly you can check with other primitive Wrappers .. } } }
__________________
dont worry newbie, we got you covered.
Reply With Quote