java.lang.StringBuilder.getValue()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(3.3k)|赞(0)|评价(0)|浏览(149)

本文整理了Java中java.lang.StringBuilder.getValue()方法的一些代码示例,展示了StringBuilder.getValue()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。StringBuilder.getValue()方法的具体详情如下:
包路径:java.lang.StringBuilder
类名称:StringBuilder
方法名:getValue

StringBuilder.getValue介绍

暂无

代码示例

代码示例来源:origin: robovm/robovm

/**
   * Writes the state of this object to the stream passed.
   *
   * @param out
   *            the stream to write the state to.
   * @throws IOException
   *             if the stream throws it during the write.
   * @serialData {@code int} - the length of this object. {@code char[]} - the
   *             buffer from this object, which may be larger than the length
   *             field.
   */
  private void writeObject(ObjectOutputStream out) throws IOException {
    out.defaultWriteObject();
    out.writeInt(length());
    out.writeObject(getValue());
  }
}

代码示例来源:origin: MobiVM/robovm

/**
   * Writes the state of this object to the stream passed.
   *
   * @param out
   *            the stream to write the state to.
   * @throws IOException
   *             if the stream throws it during the write.
   * @serialData {@code int} - the length of this object. {@code char[]} - the
   *             buffer from this object, which may be larger than the length
   *             field.
   */
  private void writeObject(ObjectOutputStream out) throws IOException {
    out.defaultWriteObject();
    out.writeInt(length());
    out.writeObject(getValue());
  }
}

代码示例来源:origin: ibinti/bugvm

/**
   * Writes the state of this object to the stream passed.
   *
   * @param out
   *            the stream to write the state to.
   * @throws IOException
   *             if the stream throws it during the write.
   * @serialData {@code int} - the length of this object. {@code char[]} - the
   *             buffer from this object, which may be larger than the length
   *             field.
   */
  private void writeObject(ObjectOutputStream out) throws IOException {
    out.defaultWriteObject();
    out.writeInt(length());
    out.writeObject(getValue());
  }
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
   * Writes the state of this object to the stream passed.
   *
   * @param out
   *            the stream to write the state to.
   * @throws IOException
   *             if the stream throws it during the write.
   * @serialData {@code int} - the length of this object. {@code char[]} - the
   *             buffer from this object, which may be larger than the length
   *             field.
   */
  private void writeObject(ObjectOutputStream out) throws IOException {
    out.defaultWriteObject();
    out.writeInt(length());
    out.writeObject(getValue());
  }
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
   * Writes the state of this object to the stream passed.
   *
   * @param out
   *            the stream to write the state to.
   * @throws IOException
   *             if the stream throws it during the write.
   * @serialData {@code int} - the length of this object. {@code char[]} - the
   *             buffer from this object, which may be larger than the length
   *             field.
   */
  private void writeObject(ObjectOutputStream out) throws IOException {
    out.defaultWriteObject();
    out.writeInt(length());
    out.writeObject(getValue());
  }
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
   * Writes the state of this object to the stream passed.
   *
   * @param out
   *            the stream to write the state to.
   * @throws IOException
   *             if the stream throws it during the write.
   * @serialData {@code int} - the length of this object. {@code char[]} - the
   *             buffer from this object, which may be larger than the length
   *             field.
   */
  private void writeObject(ObjectOutputStream out) throws IOException {
    out.defaultWriteObject();
    out.writeInt(length());
    out.writeObject(getValue());
  }
}

代码示例来源:origin: FlexoVM/flexovm

/**
   * Writes the state of this object to the stream passed.
   *
   * @param out
   *            the stream to write the state to.
   * @throws IOException
   *             if the stream throws it during the write.
   * @serialData {@code int} - the length of this object. {@code char[]} - the
   *             buffer from this object, which may be larger than the length
   *             field.
   */
  private void writeObject(ObjectOutputStream out) throws IOException {
    out.defaultWriteObject();
    out.writeInt(length());
    out.writeObject(getValue());
  }
}

相关文章

微信公众号

最新文章

更多