- java.lang.Object
-
- org.omg.CORBA.IntHolder
-
- All Implemented Interfaces:
-
Streamable
public final class IntHolder extends Object implements Streamable
持有人Int
。 有关Holder文件的更多信息,请参阅"Generated Files: Holder Files" 。一个
int
持有者类,用于在IDL方法中存储“out”和“inout”参数。 如果IDL方法签名具有作为“out”或“inout”参数的IDLlong
,则程序员必须将IntHolder
的实例作为方法调用中的相应参数传递; 对于“inout”参数,程序员还必须填写要发送到服务器的“in”值。 在方法调用返回之前,ORB将填写与从服务器返回的“out”值对应的值。如果
myIntHolder
是实例IntHolder
,存储在其值value
字段可以与被访问myIntHolder.value
。- 从以下版本开始:
- JDK1.2
-
-
Field Summary
Fields Modifier and Type Field 描述 int
value
该int
持有的IntHolder
对象在其value
领域。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 void
_read(InputStream input)
从input
读取未编组的数据,并将其分配给此IntHolder
对象中的value
字段。TypeCode
_type()
检索TypeCode
对应于该保存的值对象IntHolder
对象value
场。void
_write(OutputStream output)
将此IntHolder
对象的value
字段中的值value
到输出流output
。
-
-
-
方法详细信息
-
_read
public void _read(InputStream input)
从input
读取未编组的数据,并将其分配给该IntHolder
对象中的value
字段。- Specified by:
-
_read
在接口Streamable
- 参数
-
input
- 包含来自电线的CDR格式数据的InputStream
对象
-
_write
public void _write(OutputStream output)
将此IntHolder
对象的value
字段中的值value
到输出流output
。- Specified by:
-
_write
接口Streamable
- 参数
-
output
- 将包含CDR格式数据的OutputStream
对象
-
_type
public TypeCode _type()
检索TypeCode
对应于该保存的值对象IntHolder
对象value
场。- Specified by:
-
_type
在接口Streamable
- 结果
-
该
IntHolder
对象中保存的值的类型代码
-
-