Is there any limit on the length of String type in Java?

WBOY
Release: 2024-01-06 08:07:49
forward
1767 people have browsed it

Is there any length limit for the String type in Java

Strictly speaking, String does have a length limit.

1. String internally uses a char[] array to store the content of the string. The array subscript is an integer (you can also refer to the String construction method String(char value[], int offset, int count) to know The number of characters is represented by an integer), and the range of the integer (Java specifies 32 bits) is 2G. That is to say, the maximum length of a Java array is 2G, that is, the string cannot exceed 2G characters.

2. Are there any other restrictions on the array size of Java? In fact, the size of the array cannot exceed the size of the Java heap, and the maximum size of the Java heap can be specified through startup parameters. If the Java heap is large enough, the maximum length of the array can continue to increase.

So, according to theory, the number of characters in a string cannot exceed 2G, but it is possible to have less than 2G characters.

Is there any limit on the string length of string constants

String is stored internally in the form of a char array. The length of the array is int type, so the maximum length allowed by String is Integer.MAX_VALUE. And since characters in Java are stored in 16 bits, approximately 4GB of memory is needed to store the maximum length of the string. But this is only for string variables. If it is a string literal (string literals), such as "abc", "1a2b" and other string literals written in the code, then the maximum allowed length depends on the string The storage size in the constant pool, that is, the storage format of strings in class format files:

CONSTANT_Utf8_info {

u1 tag;

u2 length;

u1 bytes[length];

}

u2 is an unsigned 16-bit integer, so the theoretical maximum length of a string literal allowed is 2^16-1=65535. However, after actual testing, it was found that the maximum allowed length is only 65534, and exceeding this limit will cause compilation errors.

The above is the detailed content of Is there any limit on the length of String type in Java?. For more information, please follow other related articles on the PHP Chinese website!

source:docexcel.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!