public final class BooleanHolder extends Object implements Streamable
要的Holder类, boolean
,其用于存储“out”和“INOUT” IDL方法参数。 如果IDL方法签名将IDL boolean
作为“out”或“INOUT”参数,则程序员必须传递的一个实例BooleanHolder
如在方法调用对应的参数; 对于“inout”参数,程序员还必须填写要发送到服务器的“in”值。 在方法调用返回之前,ORB将填写与从服务器返回的“out”值对应的值。
如果myBooleanHolder
是实例BooleanHolder
,存储在其值value
字段可以与被访问myBooleanHolder.value
。
Modifier and Type | Field and Description |
---|---|
boolean |
value
boolean 价值由这
BooleanHolder 对象持有。
|
Constructor and Description |
---|
BooleanHolder()
构造一个新的
BooleanHolder 对象,其
value 字段初始化为
false 。
|
BooleanHolder(boolean initial)
构造一个新的
BooleanHolder 对象,其
value 字段用给定的
boolean 。
|
Modifier and Type | Method and Description |
---|---|
void |
_read(InputStream input)
从读取已解组数据
input 并将其分配给该
BooleanHolder 对象
value 场。
|
TypeCode |
_type()
检索对应
TypeCode 对象中保存的值的
BooleanHolder 对象。
|
void |
_write(OutputStream output)
将此
BooleanHolder 对象的
value 字段的值传送到输出流
output 。
|
public BooleanHolder()
BooleanHolder
对象,其
value
字段初始化为
false
。
public BooleanHolder(boolean initial)
BooleanHolder
对象,其
value
字段用给定的
boolean
。
initial
-
boolean
用于初始化新创建的
BooleanHolder
对象的
value
字段
public void _read(InputStream input)
input
并将其分配给该
BooleanHolder
对象
value
场。
_read
在界面
Streamable
input
-
InputStream
对象,其中包含来自电线的CDR格式数据
public void _write(OutputStream output)
BooleanHolder
对象的
value
字段中的值
value
到输出流
output
。
_write
在接口
Streamable
output
- 将包含CDR格式数据的OutputStream
public TypeCode _type()
TypeCode
对象中保存的值的
BooleanHolder
对象。
_type
在接口
Streamable
TypeCode
为该
BooleanHolder
对象持有的价值
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.