write_string() 공개 메소드

public write_string ( String s ) : void
s String
리턴 void
예제 #1
0
 /**
  * Convert this string to the equivalent Erlang external representation.
  *
  * @param buf
  *            an output stream to which the encoded string should be
  *            written.
  */
 public override void encode(OtpOutputStream buf)
 {
     buf.write_string(str);
 }