Exemplo n.º 1
0
 /// <summary>
 /// インスタンスをテキストファイルに出力します
 /// </summary>
 /// <param name="sw">出力先</param>
 public void print(StreamWriter sw) throws IOException {
   String result = this.toString();
   sw.writeLine(result);
 }