![]() |
Sponsored Link •
|
Advertisement
|
Advertisement
|
This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.
Message:
> Hi, I am writing a program that works with extremely large numbers and file handling. I was wondering if a String object has a max length? Also, if I have two BigInteger objects, can I append one to the other without converting to String (this is in case String has a max length)? Thanx in advance. Memory for Strings is dynamically allocated, so basically they Beside that, your BigIntegers can be of arbitrary lenght as you know. Converting to them to String objects and appending is no problem and should be trivial also. - Ali Replies: |
Sponsored Links
|