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


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–



相关用法


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