O Comprimento da classe Java String() método encontra o comprimento de uma string. O comprimento da sequência Java é igual às unidades de código Unicode da sequência.
Assinatura
A assinatura do método string length() é fornecida abaixo:
public int length()
Especificado por
Interface CharSequence
Devoluções
Comprimento dos caracteres. Em outras palavras, o número total de caracteres presentes na string.
Implementação interna
public int length() { return value.length; }
A classe String usa internamente um array char[] para armazenar os caracteres. A variável de comprimento do array é usada para encontrar o número total de elementos presentes no array. Como a classe Java String usa esse array char[] internamente; portanto, a variável length não pode ser exposta ao mundo exterior. Conseqüentemente, os desenvolvedores Java criaram o método length(), que expõe o valor da variável length. Também se pode pensar no método length() como o método getter(), que fornece um valor do campo da classe ao usuário. A implementação interna descreve claramente que o método length() retorna o valor da variável length.
Exemplo de método Java String length()
Nome do arquivo: ComprimentoExemplo.java
public class LengthExample{ public static void main(String args[]){ String s1='javatpoint'; String s2='python'; System.out.println('string length is: '+s1.length());//10 is the length of javatpoint string System.out.println('string length is: '+s2.length());//6 is the length of python string }}Teste agora
Saída:
string length is: 10 string length is: 6
Java String length() Método Exemplo 2
Já que o método length() fornece o número total de caracteres presentes na string; portanto, também é possível verificar se a string fornecida está vazia ou não.
Nome do arquivo: ComprimentoExemplo2.java
public class LengthExample2 { public static void main(String[] args) { String str = 'Javatpoint'; if(str.length()>0) { System.out.println('String is not empty and length is: '+str.length()); } str = ''; if(str.length()==0) { System.out.println('String is empty now: '+str.length()); } } }
Saída:
String is not empty and length is: 10 String is empty now: 0
Java String length() Método Exemplo 3
O método length() também é usado para reverter a string.
Nome do arquivo: ComprimentoExemplo3.java
class LengthExample3 { // main method public static void main(String argvs[]) { String str = 'Welcome To JavaTpoint'; int size = str.length(); System.out.println('Reverse of the string: ' + ''' + str + ''' + ' is'); for(int i = 0; i <size; i++) { printing in reverse order system.out.print(str.charat(str.length() - i 1)); } < pre> <p> <strong>Output:</strong> </p> <pre> Reverse of the string: 'Welcome To JavaTpoint' is tniopTavaJ oT emocleW </pre> <h2>Java String length() Method Example 4</h2> <p>The length() method can also be used to find only the white spaces present in the string. Observe the following example.</p> <p> <strong>FileName:</strong> LengthExample4.java</p> <pre> public class LengthExample4 { // main method public static void main(String argvs[]) { String str = ' Welcome To JavaTpoint '; int sizeWithWhiteSpaces = str.length(); System.out.println('In the string: ' + ''' + str + '''); str = str.replace(' ', ''); int sizeWithoutWhiteSpaces = str.length(); // calculating the white spaces int noOfWhieSpaces = sizeWithWhiteSpaces - sizeWithoutWhiteSpaces; System.out.print('Total number of whitespaces present are: ' + noOfWhieSpaces); } } </pre> <p> <strong>Output:</strong> </p> <pre> In the string: ' Welcome To JavaTpoint ' Total number of whitespaces present are: 4 </pre> <hr></size;>
Java String length() Método Exemplo 4
O método length() também pode ser usado para encontrar apenas os espaços em branco presentes na string. Observe o exemplo a seguir.
Nome do arquivo: ComprimentoExemplo4.java
public class LengthExample4 { // main method public static void main(String argvs[]) { String str = ' Welcome To JavaTpoint '; int sizeWithWhiteSpaces = str.length(); System.out.println('In the string: ' + ''' + str + '''); str = str.replace(' ', ''); int sizeWithoutWhiteSpaces = str.length(); // calculating the white spaces int noOfWhieSpaces = sizeWithWhiteSpaces - sizeWithoutWhiteSpaces; System.out.print('Total number of whitespaces present are: ' + noOfWhieSpaces); } }
Saída:
In the string: ' Welcome To JavaTpoint ' Total number of whitespaces present are: 4