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


Java StringJoiner add()用法及代碼示例


StringJoiner的add(CharSequence newElement)將給定CharSequence值的副本添加為StringJoiner值的下一個元素。如果newElement為null,則添加“null”。

用法:

public StringJoiner add(CharSequence newElement)

參數:此方法采用強製性參數newElement,這是要添加的元素。


返回值:此方法返回對此StringJoiner的引用

以下示例程序旨在說明add()方法:

示例1:用分度符“”演示add()

// Java program to demonstrate 
// add() method of StringJoiner 
  
import java.util.StringJoiner; 
  
public class GFG1 { 
    public static void main(String[] args) 
    { 
  
        // Creating StringJoiner with delimeter " " 
        StringJoiner str = new StringJoiner(" "); 
  
        // Adding elements in the StringJoiner 
        str.add("Geeks"); 
        str.add("for"); 
        str.add("Geeks"); 
  
        // Print the StringJoiner 
        System.out.println(str.toString()); 
    } 
}
輸出:
Geeks for Geeks

示例2:演示帶有分度器“,”的add()

// Java program to demonstrate 
// add() method of StringJoiner 
  
import java.util.StringJoiner; 
  
public class GFG1 { 
    public static void main(String[] args) 
    { 
  
        // Creating StringJoiner with delimeter "," 
        StringJoiner str = new StringJoiner(","); 
  
        // Adding elements in the StringJoiner 
        str.add("Geeks"); 
        str.add("for"); 
        str.add("Geeks"); 
  
        // Print the StringJoiner 
        System.out.println(str.toString()); 
    } 
}
輸出:
Geeks,for,Geeks


相關用法


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