java.nio.IntBuffer类的rewind()方法用于倒带此缓冲区。位置设置为零,标记被丢弃。假设已正确设置了限制,请在序列channel-write或get操作之前调用此方法。调用此方法既不会更改,也不会丢弃标记的值。
用法:
public final IntBuffer rewind()
参数:该方法不带任何参数。
返回值:此方法返回此缓冲区。
下面是说明rewind()方法的示例:
范例1:
// Java program to demonstrate
// rewind() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// defining and allocating IntBuffer
// using allocate() method
IntBuffer intBuffer
= IntBuffer.allocate(4);
// put char value in intBuffer
// using put() method
intBuffer.put(10);
intBuffer.put(20);
// print the int buffer
System.out.println(
"Buffer before operation: "
+ Arrays.toString(
intBuffer.array())
+ "\nPosition: "
+ intBuffer.position()
+ "\nLimit: "
+ intBuffer.limit());
// rewind the Buffer
// using rewind() method
intBuffer.rewind();
// print the intbuffer
System.out.println(
"\nBuffer after operation: "
+ Arrays.toString(
intBuffer.array())
+ "\nPosition: "
+ intBuffer.position()
+ "\nLimit: "
+ intBuffer.limit());
}
}
输出:
Buffer before operation: [10, 20, 0, 0] Position: 2 Limit: 4 Buffer after operation: [10, 20, 0, 0] Position: 0 Limit: 4
范例2:
// Java program to demonstrate
// rewind() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// defining and allocating IntBuffer
// using allocate() method
IntBuffer intBuffer
= IntBuffer.allocate(5);
// put int value in IntBuffer
// using put() method
intBuffer.put(10);
intBuffer.put(20);
intBuffer.put(30);
// mark will be going to
// discarded by rewind()
intBuffer.mark();
// print the buffer
System.out.println(
"Buffer before operation: "
+ Arrays.toString(
intBuffer.array())
+ "\nPosition: "
+ intBuffer.position()
+ "\nLimit: "
+ intBuffer.limit());
// Rewind the Buffer
// using rewind() method
intBuffer.rewind();
// print the buffer
System.out.println(
"\nBuffer after operation: "
+ Arrays.toString(
intBuffer.array())
+ "\nPosition: "
+ intBuffer.position()
+ "\nLimit: "
+ intBuffer.limit());
}
}
输出:
Buffer before operation: [10, 20, 30, 0, 0] Position: 3 Limit: 5 Buffer after operation: [10, 20, 30, 0, 0] Position: 0 Limit: 5
参考: https://docs.oracle.com/javase/9/docs/api/java/nio/IntBuffer.html#rewind–
相关用法
- Java IntBuffer flip()用法及代码示例
- Java IntBuffer mark()用法及代码示例
- Java IntBuffer duplicate()用法及代码示例
- Java IntBuffer clear()用法及代码示例
- Java IntBuffer limit()用法及代码示例
- Java ShortBuffer rewind()用法及代码示例
- Java LongBuffer rewind()用法及代码示例
- Java DoubleBuffer rewind()用法及代码示例
- Java IntBuffer reset()用法及代码示例
- Java CharBuffer rewind()用法及代码示例
- Java Buffer rewind()用法及代码示例
- Java ByteBuffer rewind()用法及代码示例
- Java FloatBuffer rewind()用法及代码示例
- Java IntBuffer hasArray()用法及代码示例
- Java IntBuffer array()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 IntBuffer rewind() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。