 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Get the length of a StringBuffer Object in Java
To find the length of the StringBuffer object, the length() function is used. It is a method of the StringBuffer Class. The method returns the count of characters in the sequence.
Declaration- The java.lang.StringBuffer.length() method is declared as follows −
public int length()
Let us see an example program illustrating the use of length() method −
Example
public class Example {    public static void main(String[] args) {       StringBuffer sb = new StringBuffer("Hello World");       int len = sb.length(); // computes the length of the StringBuffer Object       System.out.println(len);    } }  Output
11
Advertisements
 