Jaka jest długość ciągu?

Jak znaleźć długość ciągu w Javie?
Java zapewnia prostą i przydatną metodę obliczania długości dowolnego ciągu znaków . Bez zbędnych ceregieli, spójrzmy na przykład znajdowania długości ciągu .Przykład
public class StringLength {
public static void main(String args[]) {
String alphabetsWithSpaces = "A B C";
String digitsWithSpaces = "1 2 3";
String specialCharsWithSpaces = "! @ $";
String allChars = "Z X 3 $$$ ^^^ * )(";
String sentence = "Hey, it's finally summers!";
System.out.println(alphabetsWithSpaces + " length = " + alphabetsWithSpaces.length());
System.out.println(digitsWithSpaces + " length = " + digitsWithSpaces.length());
System.out.println(specialCharsWithSpaces + " length = " + specialCharsWithSpaces.length());
System.out.println(allChars + " length = " + allChars.length());
System.out.println(sentence + " length = " + sentence.length());
}
}
Wyjście
Długość ABC = 5 1 2 3 długość = 5 ! @ $ długość = 5 ZX 3 $$$ ^^^ * )( długość = 23 Hej, w końcu mamy lato! długość = 26
GO TO FULL VERSION