In Java, I would like to be able to do operations on really big integers (that can't be stored in a long), how can I do that?
What is the best way to deal with this, with good performances? Should I create my own data type that contains several long variables?
Example:
public class MyBigInteger{
private long firstPart;
private long secondPart;
...
}
public MyBigInteger add(long a, long b){
MyBigInteger res;
// WHAT CAN I DO HERE, I guess I could do something with the >> << operators, but I've never used them!
return res;
}
Thanks!