Click here to watch in Youtube :
https://www.youtube.com/watch?v=laj4m0wz6P4&list=UUhwKlOVR041tngjerWxVccw
Click the below Image to Enlarge
Java Tutorial : Java String(length method) |
/* * public int length() * * Returns the length of this string. The length is * equal to the number of Unicode code units in the * string. * * Returns: * ------- * * the length of the sequence of characters * represented by this object. */ public class StringTest { public static void main(String[] args) { String str = "Welcome"; int length = str.length(); System.out.println("length = " + length); } }
length = 7
https://sites.google.com/site/javaee4321/java/StringDemo_String_length_App.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/StringDemo_String_length_App
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/ae1c81370f840697c745970d52d13d8987910b41/BasicJava/StringDemo_String_length_App/?at=master
See also:
No comments:
Post a Comment