public final class ShortHolder extends Object implements Streamable
用于在IDL操作中存储“out”和“inout”参数的简写。 如果IDL操作签名将IDL short
作为“out”或“INOUT”参数,则程序员必须传递的一个实例ShortHolder
如在方法调用对应的参数; 对于“inout”参数,程序员还必须填写要发送到服务器的“in”值。 在方法调用返回之前,ORB将填写与从服务器返回的“out”值对应的值。
如果myShortHolder
是实例ShortHolder
,存储在其值value
字段可以与被访问myShortHolder.value
。
Modifier and Type | Field and Description |
---|---|
short |
value
short 的这个价值由
ShortHolder 持有。
|
Constructor and Description |
---|
ShortHolder()
构造一个新的
ShortHolder 对象,其
value 字段初始化为
0 。
|
ShortHolder(short initial)
构造一个新的
ShortHolder 对象,其
value 字段初始化为给定的
short 。
|
Modifier and Type | Method and Description |
---|---|
void |
_read(InputStream input)
从
input 读取,并使用未编组的数据激活此
ShortHolder 对象中的值。
|
TypeCode |
_type()
返回与此
ShortHolder 对象中保存的值相对应的TypeCode。
|
void |
_write(OutputStream output)
在
output 的这个
ShortHolder 对象的值。
|
public ShortHolder()
ShortHolder
对象,其
value
字段初始化为
0
。
public ShortHolder(short initial)
ShortHolder
对象,其
value
字段初始化为给定的
short
。
initial
-
short
用于初始化新创建的
ShortHolder
对象的
value
字段
public void _read(InputStream input)
input
读取,并使用未编组的数据启用此
ShortHolder
对象的值。
_read
在接口
Streamable
input
- InputStream包含来自线的CDR格式的数据。
public void _write(OutputStream output)
ShortHolder
对象中的
output
的值。
_write
在界面
Streamable
output
- 将包含CDR格式数据的OutputStream。
public TypeCode _type()
ShortHolder
对象中保存的值相对应的TypeCode。
_type
在界面
Streamable
ShortHolder
对象中的TypeCode
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.