Java中的 TextStyle asStandalone() 方法及示例
TextStyle 枚举的asStandalone()方法用于返回与此 TextStyle 对象大小相同的独立样式。
句法:
public TextStyle asStandalone()
参数:此方法不接受任何内容。
返回值:该方法返回相同大小的独立样式。
下面的程序说明了 TextStyle.asStandalone() 方法:
方案一:
// Java program to demonstrate
// TextStyle.asStandalone() method
import java.time.format.TextStyle;
public class GFG {
public static void main(String[] args)
{
// get TextStyle
TextStyle style
= TextStyle.valueOf("SHORT");
// apply asStandalone()
TextStyle asStandaloneAttribute
= style.asStandalone();
// print
System.out.println(
"Standlone TextStyle :"
+ asStandaloneAttribute);
}
}
输出:
Standlone TextStyle :SHORT_STANDALONE
方案二:
// Java program to demonstrate
// TextStyle.asStandalone() method
import java.time.format.TextStyle;
public class GFG {
public static void main(String[] args)
{
// get TextStyle
TextStyle style
= TextStyle.valueOf("FULL");
// apply asStandalone()
TextStyle asStandaloneAttribute
= style.asStandalone();
// print
System.out.println("Standlone TextStyle :"
+ asStandaloneAttribute);
}
}
输出:
Standlone TextStyle :FULL_STANDALONE
参考资料:https: Java/time/format/TextStyle.html#asStandalone()