non limitano la vostra auto con Integer.MAX_VALUE
anche se questa domanda è stato chiesto molti anni fa, ma ai volevano partecipare con un semplice esempio utilizzando solo Java SE senza librerie esterne
dapprima diciamo che è teoricamente possibile, ma praticamente possibile
un aspetto nuovo: se l'array è un oggetto di elementi quello di avere un oggetto che è array di array
Ecco l'esempio
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.List;
/**
*
* @author Anosa
*/
public class BigArray<t>{
private final static int ARRAY_LENGTH = 1000000;
public final long length;
private List<t[]> arrays;
public BigArray(long length, Class<t> glasss)
{
this.length = length;
arrays = new ArrayList<>();
setupInnerArrays(glasss);
}
private void setupInnerArrays(Class<t> glasss)
{
long numberOfArrays = length/ARRAY_LENGTH;
long remender = length % ARRAY_LENGTH;
/*
we can use java 8 lambdas and streams:
LongStream.range(0, numberOfArrays).
forEach(i ->
{
arrays.add((t[]) Array.newInstance(glasss, ARRAY_LENGTH));
});
*/
for (int i = 0; i < numberOfArrays; i++)
{
arrays.add((t[]) Array.newInstance(glasss, ARRAY_LENGTH));
}
if (remender > 0)
{
//the remainer will 100% be less than the [ARRAY_LENGTH which is int ] so
//no worries of casting (:
arrays.add((t[]) Array.newInstance(glasss, (int) remender));
}
}
public void put(t value, long index)
{
if (index >= length || index < 0)
{
throw new IndexOutOfBoundsException("out of the reange of the array, your index must be in this range [0, " + length + "]");
}
int indexOfArray = (int) (index/ARRAY_LENGTH);
int indexInArray = (int) (index - (indexOfArray * ARRAY_LENGTH));
arrays.get(indexOfArray)[indexInArray] = value;
}
public t get(long index)
{
if (index >= length || index < 0)
{
throw new IndexOutOfBoundsException("out of the reange of the array, your index must be in this range [0, " + length + "]");
}
int indexOfArray = (int) (index/ARRAY_LENGTH);
int indexInArray = (int) (index - (indexOfArray * ARRAY_LENGTH));
return arrays.get(indexOfArray)[indexInArray];
}
}
ed ecco il test
public static void main(String[] args)
{
long length = 60085147514l;
BigArray<String> array = new BigArray<>(length, String.class);
array.put("peace be upon you", 1);
array.put("yes it worj", 1755);
String text = array.get(1755);
System.out.println(text + " i am a string comming from an array ");
}
questo codice è limitato solo dalla soltanto Long.MAX_VALUE
e Java mucchio ma si può superare come si voglio (ho fatto 3800 MB)
spero che questo sia utile e fornisca una risposta semplice
Solo curioso: perché è necessario conservare così tanti dati nella memoria allo stesso tempo? Non sarebbe possibile dividerlo in pezzi? –
+1 al commento di Bruno. L'unico modo in cui avere l'intero file in memoria sarà un vantaggio è se devi fare accessi casuali in punti diversi del file, e in questo caso è quasi sicuramente meglio analizzarlo in una rappresentazione più computabile – kdgregory
I am andando a cercare di usare un albero prefissato (trie) per mantenere i dati, questo potrebbe ridurlo abbastanza da inserirsi in 2GB di memoria. –