java.nio.IntBuffer類的flip()方法用於翻轉此緩衝區。通過翻轉此緩衝區,這意味著將緩衝區修剪到當前位置,然後將位置更改為零。在此過程中,如果緩衝區上有任何標記,則該標記將被自動丟棄。
用法:
public final IntBuffer flip()
參數:該方法不帶任何參數。
返回值:此方法返回翻轉的IntBuffer實例。
下麵是說明flip()方法的示例:
範例1:
// Java program to demonstrate
// flip() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declare and initialize
// the int array
int[] ib
= { 10, 20, 30 };
// wrap the int array
// into IntBuffer
// using wrap() method
IntBuffer intBuffer
= IntBuffer.wrap(ib);
// set position at index 1
intBuffer.position(1);
// print the buffer
System.out.println(
"Buffer before flip: "
+ Arrays.toString(
intBuffer.array())
+ "\nPosition: "
+ intBuffer.position()
+ "\nLimit: "
+ intBuffer.limit());
// Flip the Buffer
// using flip() method
intBuffer.flip();
// print the buffer
System.out.println(
"\nBuffer after flip: "
+ Arrays.toString(
intBuffer.array())
+ "\nPosition: "
+ intBuffer.position()
+ "\nLimit: "
+ intBuffer.limit());
}
}
輸出:
Buffer before flip: [10, 20, 30] Position: 1 Limit: 3 Buffer after flip: [10, 20, 30] Position: 0 Limit: 1
範例2:
// Java program to demonstrate
// flip() 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 int value in IntBuffer
// using put() method
intBuffer.put(20);
intBuffer.put(34);
// set position at index 1
intBuffer.position(1);
// print the buffer
System.out.println(
"Buffer before flip: "
+ Arrays.toString(
intBuffer.array())
+ "\nPosition: "
+ intBuffer.position()
+ "\nLimit: "
+ intBuffer.limit());
// Flip the Buffer
// using flip() method
intBuffer.flip();
// print the buffer
System.out.println(
"\nBuffer after flip: "
+ Arrays.toString(
intBuffer.array())
+ "\nPosition: "
+ intBuffer.position()
+ "\nLimit: "
+ intBuffer.limit());
}
}
輸出:
Buffer before flip: [20, 34, 0, 0] Position: 1 Limit: 4 Buffer after flip: [20, 34, 0, 0] Position: 0 Limit: 1
參考: https://docs.oracle.com/javase/9/docs/api/java/nio/IntBuffer.html#flip–
相關用法
- Java IntBuffer clear()用法及代碼示例
- Java IntBuffer rewind()用法及代碼示例
- Java IntBuffer duplicate()用法及代碼示例
- Java IntBuffer limit()用法及代碼示例
- Java IntBuffer mark()用法及代碼示例
- Java LongBuffer flip()用法及代碼示例
- Java IntBuffer reset()用法及代碼示例
- Java IntBuffer allocate()用法及代碼示例
- Java IntBuffer equals()用法及代碼示例
- Java IntBuffer arrayOffset()用法及代碼示例
- Java IntBuffer slice()用法及代碼示例
- Java IntBuffer wrap()用法及代碼示例
- Java IntBuffer array()用法及代碼示例
- Java IntBuffer hasArray()用法及代碼示例
- Java IntBuffer compareTo()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 IntBuffer flip() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。