User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







java:io:printstream:append

Table of Contents

append

Appends a CharSequence

append(char): PrintStream
append(CharSequence): PrintStream
append(CharSequence, int start, int end): PrintStream
 
return value: PrintStream

Language Example

        int i = 42;
        StringBuffer buf = new StringBuffer(42);
        buf.append(i);
        buf.append(" is a answer to a nice question");
        System.out.println(buf);

output

   42 is a answer to a nice question

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
java/io/printstream/append.txt · Last modified: 2024/02/16 01:12 (external edit)

Impressum Datenschutz