java.util.Vector.toString()是Vector的一種內置方法,用於獲取Vector對象的字符串表示形式,其形式為以“,”分隔的條目的字符串表示形式。因此,本質上使用toString()方法將Vector的所有元素轉換為String。
用法:
Vector.toString()
參數:該方法不帶任何參數。
返回值:該方法返回由Vector元素的字符串表示形式組成的String表示形式。
以下程序說明了java.util.Vector.toString()方法的用法:
示例1:
// Java code to illustrate the toString() method
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// creating vector type object
Vector<String> vector = new Vector<String>();
// Inserting elements into the table
vector.add("Geeks");
vector.add("4");
vector.add("Geeks");
vector.add("Welcomes");
vector.add("You");
// Displaying the Vector
System.out.println("Vector: " + vector);
// Displaying the string representaion
System.out.println("The String representation is: "
+ vector.toString());
}
}
輸出:
Vector: [Geeks, 4, Geeks, Welcomes, You] The String representation is: [Geeks, 4, Geeks, Welcomes, You]
示例2:
// Java code to illustrate the toString() method
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Creating an empty Vector
Vector<Integer> vector
= new Vector<Integer>();
// Inserting elements into the table
vector.add(10);
vector.add(15);
vector.add(20);
vector.add(25);
vector.add(30);
// Displaying the Vector
System.out.println("Initial Vector is: " + vector);
// Displaying the string representaion
System.out.println("The String representation is: "
+ vector.toString());
}
}
輸出:
Initial Vector is: [10, 15, 20, 25, 30] The String representation is: [10, 15, 20, 25, 30]
相關用法
- Java BigInteger toString()用法及代碼示例
- Java AbstractSet toString()用法及代碼示例
- Java AbstractSequentialList toString()用法及代碼示例
- Java DecimalStyle toString()用法及代碼示例
- Java ParsePosition toString()用法及代碼示例
- Java HashSet toString()用法及代碼示例
- Java Hashtable toString()用法及代碼示例
- Java MathContext toString()用法及代碼示例
- Java FieldPosition toString()用法及代碼示例
- Java TreeSet toString()用法及代碼示例
- Java StringJoiner toString()用法及代碼示例
- Java ArrayBlockingQueue toString()用法及代碼示例
- Java LinkedHashSet toString()用法及代碼示例
- Java CopyOnWriteArrayList toString()用法及代碼示例
注:本文由純淨天空篩選整理自ankit15697大神的英文原創作品 Vector toString() method in Java with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。