logo

Java karakterlánc maximális mérete

Ebben a részben megvitatjuk mekkora a karakterlánc maximális mérete Java-ban.

Ban ben Jáva , a Húr karakterek tömbjének tekinthető, a karaktersorozatot pedig karakterláncnak nevezzük. A String osztály karakterláncokat képvisel. A karakterláncot a létrehozás után nem tudjuk megváltoztatni. A karakterlánc-objektumok nem oszthatók meg, mert igen változhatatlan . Vegyük például a következő karakterláncot:

egyszerű dátumformázó java-ban
 String str='javatpoint'; 

A fenti karakterlánc egyenértékű a következővel:

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

A String osztály biztosítja a long() metódust, amely meghatározza a String hosszát. A módszer szintaxisa a következő:

 public int length() 

A metódus visszaadja a karakterlánc hosszát. A a húr hossza számával egyenlő Unicode egységek a húrban. A Java platform az UTF-16 reprezentációt használja char tömbökben (mindegyik karakter két bájt), String és StringBuffer osztályokban. Ebben az ábrázolásban a kiegészítő karakterek char értékpárként vannak ábrázolva, az első a magas helyettesítő tartományból (uD800-uDBFF), a második az alacsony helyettesítő tartományból (uDC00-uDFFF).

A metódus az int típusú hosszt adja vissza. Tehát a karakterlánc maximális mérete megegyezik az egész adattípus tartományával. A metódus által visszaadott maximális hossz Integer.MAX_VALUE.

Az int mérete Java-ban 4 bájt (aláírt bitet, azaz MSB-t tartalmaz). Az egész adattípus tartománya -2312-hez31-1 (-2147483648-2147483647). Ne feledje, hogy nem használhatunk negatív értékeket az indexeléshez. Az indexelés a maximális tartományon belül történik. Ez azt jelenti, hogy nem tudjuk tárolni 2147483648th karakter. Ezért a String maximális hossza Java-ban 0-tól 2147483647-ig . Tehát elméletileg 2 147 483 647 karakter hosszúságú karakterláncunk lehet.

Keressük meg a karakterlánc maximális hosszát egy Java programon keresztül.

külön string java-ban

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;>

Kimenet:

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