当前位置: 首页>>代码示例>>Java>>正文


Java ObjectInput.readChar方法代码示例

本文整理汇总了Java中java.io.ObjectInput.readChar方法的典型用法代码示例。如果您正苦于以下问题:Java ObjectInput.readChar方法的具体用法?Java ObjectInput.readChar怎么用?Java ObjectInput.readChar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在java.io.ObjectInput的用法示例。


在下文中一共展示了ObjectInput.readChar方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: readExternal

import java.io.ObjectInput; //导入方法依赖的package包/类
public void readExternal( ObjectInput in )
	throws IOException, ClassNotFoundException {

	// VERSION
	in.readByte();

	// POSITION
	_pos = in.readInt();

	// NO_ENTRY_VALUE
	no_entry_value = in.readChar();

	// ENTRIES
	int len = in.readInt();
	_data = new char[ len ];
	for( int i = 0; i < len; i++ ) {
		_data[ i ] = in.readChar();
	}
}
 
开发者ID:JianpingZeng,项目名称:xcc,代码行数:20,代码来源:TCharArrayList.java

示例2: walkToLoad

import java.io.ObjectInput; //导入方法依赖的package包/类
protected void walkToLoad(ObjectInput byteArray) throws IOException, ClassNotFoundException
{
    c = byteArray.readChar();
    status = ARRAY_STATUS[byteArray.readInt()];
    if (status == Status.WORD_END_3 || status == Status.WORD_MIDDLE_2)
    {
        value = (V) byteArray.readObject();
    }
    int childSize = byteArray.readInt();
    child = new BaseNode[childSize];
    for (int i = 0; i < childSize; ++i)
    {
        child[i] = new Node<V>();
        child[i].walkToLoad(byteArray);
    }
}
 
开发者ID:priester,项目名称:hanlpStudy,代码行数:17,代码来源:BaseNode.java

示例3: walkToLoad

import java.io.ObjectInput; //导入方法依赖的package包/类
protected void walkToLoad(ObjectInput byteArray) throws IOException, ClassNotFoundException {
    c = byteArray.readChar();
    status = ARRAY_STATUS[byteArray.readInt()];
    if (status == Status.WORD_END_3 || status == Status.WORD_MIDDLE_2) {
        value = (V) byteArray.readObject();
    }
    int childSize = byteArray.readInt();
    child = new BaseNode[childSize];
    for (int i = 0; i < childSize; ++i) {
        child[i] = new Node<V>();
        child[i].walkToLoad(byteArray);
    }
}
 
开发者ID:shibing624,项目名称:crf-seg,代码行数:14,代码来源:BaseNode.java

示例4: readExternal

import java.io.ObjectInput; //导入方法依赖的package包/类
/** {@inheritDoc} */
public void readExternal( ObjectInput in ) throws IOException, ClassNotFoundException {
    // VERSION
	in.readByte();

    // SUPER
	super.readExternal( in );

	// NO_ENTRY_KEY
	no_entry_key = in.readChar();

	// NO_ENTRY_VALUE
	no_entry_value = in.readDouble();
}
 
开发者ID:funkemunky,项目名称:HCFCore,代码行数:15,代码来源:TCharDoubleHash.java

示例5: readExternal

import java.io.ObjectInput; //导入方法依赖的package包/类
/** {@inheritDoc} */
public void readExternal( ObjectInput in ) throws IOException, ClassNotFoundException {
    // VERSION
	in.readByte();

    // SUPER
	super.readExternal( in );

	// NO_ENTRY_KEY
	no_entry_key = in.readChar();

	// NO_ENTRY_VALUE
	no_entry_value = in.readChar();
}
 
开发者ID:funkemunky,项目名称:HCFCore,代码行数:15,代码来源:TCharCharHash.java

示例6: readExternal

import java.io.ObjectInput; //导入方法依赖的package包/类
/** {@inheritDoc} */
public void readExternal( ObjectInput in ) throws IOException, ClassNotFoundException {
    // VERSION
	in.readByte();

    // SUPER
	super.readExternal( in );

	// NO_ENTRY_KEY
	no_entry_key = in.readChar();

	// NO_ENTRY_VALUE
	no_entry_value = in.readShort();
}
 
开发者ID:JianpingZeng,项目名称:xcc,代码行数:15,代码来源:TCharShortHash.java

示例7: readExternal

import java.io.ObjectInput; //导入方法依赖的package包/类
/** {@inheritDoc} */
public void readExternal( ObjectInput in ) throws IOException, ClassNotFoundException {
    // VERSION
	in.readByte();

    // SUPER
	super.readExternal( in );

	// NO_ENTRY_KEY
	no_entry_key = in.readFloat();

	// NO_ENTRY_VALUE
	no_entry_value = in.readChar();
}
 
开发者ID:JianpingZeng,项目名称:xcc,代码行数:15,代码来源:TFloatCharHash.java

示例8: readExternal

import java.io.ObjectInput; //导入方法依赖的package包/类
/** {@inheritDoc} */
public void readExternal( ObjectInput in ) throws IOException, ClassNotFoundException {
    // VERSION
	in.readByte();

    // SUPER
	super.readExternal( in );

	// NO_ENTRY_KEY
	no_entry_key = in.readDouble();

	// NO_ENTRY_VALUE
	no_entry_value = in.readChar();
}
 
开发者ID:JianpingZeng,项目名称:xcc,代码行数:15,代码来源:TDoubleCharHash.java

示例9: readExternal

import java.io.ObjectInput; //导入方法依赖的package包/类
/** {@inheritDoc} */
public void readExternal( ObjectInput in ) throws IOException, ClassNotFoundException {
    // VERSION
	in.readByte();

    // SUPER
	super.readExternal( in );

	// NO_ENTRY_KEY
	no_entry_key = in.readChar();

	// NO_ENTRY_VALUE
	no_entry_value = in.readByte();
}
 
开发者ID:JianpingZeng,项目名称:xcc,代码行数:15,代码来源:TCharByteHash.java

示例10: readExternal

import java.io.ObjectInput; //导入方法依赖的package包/类
/** {@inheritDoc} */
public void readExternal( ObjectInput in ) throws IOException, ClassNotFoundException {
    // VERSION
	in.readByte();

    // SUPER
	super.readExternal( in );

	// NO_ENTRY_KEY
	no_entry_key = in.readChar();

	// NO_ENTRY_VALUE
	no_entry_value = in.readFloat();
}
 
开发者ID:JianpingZeng,项目名称:xcc,代码行数:15,代码来源:TCharFloatHash.java

示例11: readExternal

import java.io.ObjectInput; //导入方法依赖的package包/类
/** {@inheritDoc} */
public void readExternal( ObjectInput in ) throws IOException, ClassNotFoundException {
    // VERSION
	in.readByte();

    // SUPER
	super.readExternal( in );

	// NO_ENTRY_KEY
	no_entry_key = in.readChar();

	// NO_ENTRY_VALUE
	no_entry_value = in.readLong();
}
 
开发者ID:funkemunky,项目名称:HCFCore,代码行数:15,代码来源:TCharLongHash.java

示例12: readExternal

import java.io.ObjectInput; //导入方法依赖的package包/类
/** {@inheritDoc} */
public void readExternal( ObjectInput in ) throws IOException, ClassNotFoundException {
    // VERSION
	in.readByte();

    // SUPER
	super.readExternal( in );

	// NO_ENTRY_KEY
	no_entry_key = in.readShort();

	// NO_ENTRY_VALUE
	no_entry_value = in.readChar();
}
 
开发者ID:funkemunky,项目名称:HCFCore,代码行数:15,代码来源:TShortCharHash.java

示例13: readExternal

import java.io.ObjectInput; //导入方法依赖的package包/类
/** {@inheritDoc} */
public void readExternal( ObjectInput in ) throws IOException, ClassNotFoundException {
    // VERSION
	in.readByte();

    // SUPER
	super.readExternal( in );

	// NO_ENTRY_KEY
	no_entry_key = in.readLong();

	// NO_ENTRY_VALUE
	no_entry_value = in.readChar();
}
 
开发者ID:JianpingZeng,项目名称:xcc,代码行数:15,代码来源:TLongCharHash.java


注:本文中的java.io.ObjectInput.readChar方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。