in reply to Re: Re: sort hash keys as numbers and maybe even more...
in thread sort hash keys as numbers and maybe even more...

Java allows you define arrays of type Object and put whatever you want into them -- good luck sorting those.
Object fruit[] = new Object[2]; fruit[0] = new Apple(); fruit[1] = new Orange();