fork download
  1. class Sample {
  2. public static void main(String[] args) {
  3. test1(sb);
  4. System.out.println(sb.length());
  5. }
  6. static void test1(StringBuffer sb2) {
  7. sb2.append("test1 メソッド実行");
  8. }
  9. }
  10.  
  11.  
Success #stdin #stdout 0.03s 245632KB
stdin
Standard input is empty
stdout
12