У цьому розділі ми обговоримо який максимальний розмір рядка в Java.
в Java , а Рядок можна розглядати як масив символів, а послідовність символів називати рядком. Клас String представляє рядки символів. Ми не можемо змінити рядок після його створення. Рядкові об’єкти не можна спільно використовувати, тому що вони є незмінний . Наприклад, розглянемо такий рядок:
декодування javascript base64
String str='javatpoint';
Наведений вище рядок еквівалентний:
char ch[] = {'j', 'a', 'v', 'a', 't', 'p', 'o', 'i', 'n', 't'}; String str = new String(ch);
Клас String надає метод length(), який визначає довжину String. Синтаксис методу такий:
public int length()
Метод повертає довжину рядка. The довжина струни дорівнює кількості Одиниці Unicode в рядку. Платформа Java використовує подання UTF-16 у масивах символів (кожен символ займає два байти), класах String і StringBuffer. У цьому представленні додаткові символи представлені як пара значень char, перше з високого діапазону сурогатів (uD800-uDBFF), друге з низького діапазону сурогатів (uDC00-uDFFF).
Метод повертає довжину типу int. Отже, максимальний розмір рядка такий самий, як і діапазон цілочисельного типу даних. Максимальна довжина, яку буде повернуто методом, буде Integer.MAX_VALUE.
Розмір int в Java становить 4 байти (включаючи біт зі знаком, тобто MSB). Діапазон цілочисельного типу даних становить -231до 231-1 (від -2147483648 до 2147483647). Пам’ятайте, що ми не можемо використовувати від’ємні значення для індексації. Індексація виконується в межах максимального діапазону. Це означає, що ми не можемо зберігати 2147483648тис характер. Тому максимальна довжина рядка в Java становить 0 до 2147483647 . Отже, ми можемо мати рядок довжиною 2 147 483 647 символів, теоретично.
Давайте знайдемо максимальну довжину рядка за допомогою програми на Java.
StringMaxSize.java
import java.util.Arrays; public class StringMaxSize { public static void main(String args[]) { for (int i = 0; i <1000; i++) { try integer.max_value is a constant that stores the maximum possible value for any integer variable char[] array="new" char[integer.max_value - i]; assign specified data to each element arrays.fill(array, 'a'); creating constructor of string class and parses an into it str="new" string(array); determines print length system.out.println(str.length()); } catch (throwable e) returns detail message this throwable system.out.println(e.getmessage()); prints system.out.println('last: ' + (integer.max_value i)); i); < pre> <p> <strong>Output:</strong> </p> <img src="//techcodeview.com/img/java-tutorial/05/java-string-max-size.webp" alt="Java String Max Size"> <h4>Note: We have not shown the complete output because the output is too long to show.</h4> <p>In the above example, we have used a for loop that executes 1000 times. Inside the try block, we have created an array of <strong>Integer.MAX_VALUE-i</strong> . After that, we have invoked the fill() method of the Arrays class. It assigns the specified data type value to each element of the specified range of the specified array.</p> <p>Inside the catch block, we caught the exception (if any) thrown by the fill() method and the <strong>getMessage()</strong> method prints the message related to the exception.</p> <p>Each character takes two bytes because Java stores string as UTF-16 codes.</p> <p>Whether you are appending strings directly or using a StringBuilder (much better), you will occasionally need twice as much memory: one to store the existing string and one to store the new string/buffer when it needs to be expanded.</p> <p>If we try to insert the value beyond the limit upon doing so, the memory gets overflow and the value that we get will be negative. For example, consider the following program:</p> <p> <strong>StringSizeBeyondLimit.java</strong> </p> <pre> public class StringSizeBeyondLimit { public static void main(String[] arg) { try { System.out.println( 'Trying to initialize' + ' a n with value' + ' Integer.MAX_VALUE + 1'); // Try to store value Integer.MAX_VALUE + 1 int n = Integer.MAX_VALUE + 1; // Print the value of N System.out.println('n = ' + n); } catch(Exception e) { System.out.println(e); } } } </pre> <p> <strong>Output:</strong> </p> <pre> Trying to initialize n with value Integer.MAX_VALUE + 1 n = -2147483648 </pre> <hr></1000;>
Вихід:
1 з 1000,00
Trying to initialize n with value Integer.MAX_VALUE + 1 n = -2147483648
1000;>