java.io.ObjectOutputStream.writeNewClassDesc()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(4.0k)|赞(0)|评价(0)|浏览(134)

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

ObjectOutputStream.writeNewClassDesc介绍

[英]Write class descriptor classDesc into the receiver. It is assumed the class descriptor has not been dumped yet. The class descriptors for the superclass chain will be dumped as well. Returns the handle for this object (class descriptor) which is dumped here.
[中]将类描述符classDesc写入接收器。假定类描述符尚未转储。超类链的类描述符也将被转储。返回在此转储的对象(类描述符)的句柄。

代码示例

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

/**
 * Writes a class descriptor to the target stream.
 *
 * @param classDesc
 *            the class descriptor to write to the target stream.
 * @throws IOException
 *             if an error occurs while writing to the target stream.
 */
protected void writeClassDescriptor(ObjectStreamClass classDesc)
    throws IOException {
  writeNewClassDesc(classDesc);
}

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

writeNewClassDesc(classDesc);
} else {

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

writeNewClassDesc(classDesc);
} else {

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

/**
 * Writes a class descriptor to the target stream.
 *
 * @param classDesc
 *            the class descriptor to write to the target stream.
 * @throws IOException
 *             if an error occurs while writing to the target stream.
 */
protected void writeClassDescriptor(ObjectStreamClass classDesc)
    throws IOException {
  writeNewClassDesc(classDesc);
}

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

/**
 * Writes a class descriptor to the target stream.
 *
 * @param classDesc
 *            the class descriptor to write to the target stream.
 * @throws IOException
 *             if an error occurs while writing to the target stream.
 */
protected void writeClassDescriptor(ObjectStreamClass classDesc)
    throws IOException {
  writeNewClassDesc(classDesc);
}

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

/**
 * Writes a class descriptor to the target stream.
 *
 * @param classDesc
 *            the class descriptor to write to the target stream.
 * @throws IOException
 *             if an error occurs while writing to the target stream.
 */
protected void writeClassDescriptor(ObjectStreamClass classDesc)
    throws IOException {
  writeNewClassDesc(classDesc);
}

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

/**
 * Writes a class descriptor to the target stream.
 *
 * @param classDesc
 *            the class descriptor to write to the target stream.
 * @throws IOException
 *             if an error occurs while writing to the target stream.
 */
protected void writeClassDescriptor(ObjectStreamClass classDesc)
    throws IOException {
  writeNewClassDesc(classDesc);
}

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

/**
 * Writes a class descriptor to the target stream.
 *
 * @param classDesc
 *            the class descriptor to write to the target stream.
 * @throws IOException
 *             if an error occurs while writing to the target stream.
 */
protected void writeClassDescriptor(ObjectStreamClass classDesc)
    throws IOException {
  writeNewClassDesc(classDesc);
}

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

/**
 * Writes a class descriptor to the target stream.
 *
 * @param classDesc
 *            the class descriptor to write to the target stream.
 * @throws IOException
 *             if an error occurs while writing to the target stream.
 */
protected void writeClassDescriptor(ObjectStreamClass classDesc)
    throws IOException {
  writeNewClassDesc(classDesc);
}

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

/**
 * Writes a class descriptor to the target stream.
 *
 * @param classDesc
 *            the class descriptor to write to the target stream.
 * @throws IOException
 *             if an error occurs while writing to the target stream.
 */
protected void writeClassDescriptor(ObjectStreamClass classDesc)
    throws IOException {
  writeNewClassDesc(classDesc);
}

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

writeNewClassDesc(classDesc);
} else {

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

writeNewClassDesc(classDesc);
} else {

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

writeNewClassDesc(classDesc);
} else {

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

writeNewClassDesc(classDesc);
} else {

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

writeNewClassDesc(classDesc);
} else {

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

writeNewClassDesc(classDesc);
} else {

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

writeNewClassDesc(classDesc);
} else {

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

writeNewClassDesc(classDesc);
} else {

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

writeNewClassDesc(classDesc);
} else {

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

writeNewClassDesc(classDesc);
} else {

相关文章

ObjectOutputStream类方法