📜  Java中的Bidi isLeftToRight() 方法及示例

📅  最后修改于: 2022-05-13 01:54:53.598000             🧑  作者: Mango

Java中的Bidi isLeftToRight() 方法及示例

Java.text.Bidi类的isLeftToRight()方法用于检查它是否具有从左到右的线和基本方向。

句法:

public boolean isLeftToRight()

参数:此方法不接受任何参数。

返回值:如果此双向车同时具有从左到右的线和基本方向,则此方法返回true ,否则返回false

下面是说明isLeftToRight()方法的示例:

示例 1:

// Java program to demonstrate
// isLeftToRight() method
  
import java.text.*;
import java.util.*;
import java.io.*;
  
public class GFG {
    public static void main(String[] argv)
    {
        // creating and initializing Bidi
        // with base direction
        Bidi bidi
            = new Bidi(
                "Geeks For Geeks",
                Bidi.DIRECTION_LEFT_TO_RIGHT);
  
        // checking both line and base direction
        // using isLeftToRight() method
        boolean status = bidi.isLeftToRight();
  
        // display the result
        if (status)
            System.out.println(
                "Both Line and Base "
                + "direction is left to right");
        else
            System.out.println(
                "Both Line and Base "
                + "direction is not left to right ");
    }
}
输出:
Both Line and Base direction is left to right

示例 2:

// Java program to demonstrate
// isLeftToRight() method
  
import java.text.*;
import java.util.*;
import java.io.*;
  
public class GFG {
    public static void main(String[] argv)
    {
        // creating and initializing Bidi
        // with base direction
        Bidi bidi
            = new Bidi(
                "Geeks For Geeks",
                Bidi.DIRECTION_RIGHT_TO_LEFT);
  
        // checking both line and base direction
        // using isLeftToRight() method
        boolean status = bidi.isLeftToRight();
  
        // display the result
        if (status)
            System.out.println(
                "Both Line and Base "
                + "direction is left to right");
        else
            System.out.println(
                "Both Line and Base "
                + "direction is not left to right ");
    }
}
输出:
Both Line and Base direction is not left to right 

参考: https://docs.oracle.com/javase/9/docs/api/ Java/text/Bidi.html#isLeftToRight–