当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java IntBuffer flip()用法及代码示例


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–



相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 IntBuffer flip() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。