Java StringBuffer.append(int i)

Syntax

StringBuffer.append(int i) has the following syntax.

public StringBuffer append(int i)

Example

In the following code shows how to use StringBuffer.append(int i) method.


/*from w  w  w . jav a2 s  .  c  o  m*/
public class Main {

  public static void main(String[] arg) {

    StringBuffer buffer = new StringBuffer();
    
    int i = 123;
    buffer.append(i);
    
    System.out.println(buffer);
  }

}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable