當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java TextStyle asStandalone()用法及代碼示例


TextStyle枚舉的asStandalone()方法用於返回具有與此TextStyle對象相同大小的stand-alone樣式。

用法:

public TextStyle asStandalone()

參數:此方法不接受任何內容。


返回值:此方法返回相同大小的stand-alone樣式。

以下示例程序旨在說明TextStyle.asStandalone()方法:
程序1:

// 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

程序2:

// 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://docs.oracle.com/javase/10/docs/api/java/time/format/TextStyle.html#asStandalone()



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 TextStyle asStandalone() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。