logo

Maximálna veľkosť reťazca Java

V tejto časti budeme diskutovať aká je maximálna veľkosť reťazca v jazyku Java.

In Java , a Reťazec možno považovať za pole znakov a postupnosť znakov nazývanú reťazec. Trieda String predstavuje reťazce znakov. Keď je reťazec vytvorený, nemôžeme ho zmeniť. Reťazcové objekty nemožno zdieľať, pretože sú nemenný . Zvážte napríklad nasledujúci reťazec:

rozhranie v jazyku Java
 String str='javatpoint'; 

Vyššie uvedený reťazec je ekvivalentný:

 char ch[] = {'j', 'a', 'v', 'a', 't', 'p', 'o', 'i', 'n', 't'}; String str = new String(ch); 

Trieda String poskytuje metódu length(), ktorá určuje dĺžku reťazca String. Syntax metódy je nasledovná:

 public int length() 

Metóda vráti dĺžku reťazca. The dĺžka šnúrky sa rovná počtu Jednotky Unicode v reťazci. Platforma Java používa reprezentáciu UTF-16 v poliach znakov (každý znak zaberá dva bajty), triedach String a StringBuffer. V tejto reprezentácii sú doplnkové znaky reprezentované ako pár hodnôt znakov, prvý z rozsahu s vysokými náhradami (uD800-uDBFF), druhý z rozsahu s nízkymi náhradami (uDC00-uDFFF).

Metóda vráti dĺžku, ktorá je typu int. Takže maximálna veľkosť reťazca je rovnaká ako rozsah typu celočíselných údajov. Maximálna dĺžka, ktorú by metóda vrátila, by bola Integer.MAX_VALUE.

Veľkosť int v jazyku Java je 4 bajty (vrátane bitu so znamienkom, t. j. MSB). Rozsah celočíselného dátového typu je -231do 231-1 (-2147483648 až 2147483647). Pamätajte, že na indexovanie nemôžeme použiť záporné hodnoty. Indexovanie sa vykonáva v rámci maximálneho rozsahu. Znamená to, že nemôžeme skladovať 2147483648th charakter. Preto je maximálna dĺžka reťazca v jazyku Java 0 až 2147483647 . Takže môžeme mať reťazec s dĺžkou 2 147 483 647 znakov, teoreticky.

príklady nfa

Nájdite maximálnu dĺžku reťazca pomocou programu 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( &apos;Trying to initialize&apos; + &apos; a n with value&apos; + &apos; Integer.MAX_VALUE + 1&apos;); // Try to store value Integer.MAX_VALUE + 1 int n = Integer.MAX_VALUE + 1; // Print the value of N System.out.println(&apos;n = &apos; + 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;>

Výkon:

 Trying to initialize n with value Integer.MAX_VALUE + 1 n = -2147483648