toString()方法用於返回由集合的所有元素組成的字符串。
函數定義: def toString(): String
返回類型: It returns a string consisting of all the elements of the set.
範例1:
// Scala program of toString()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a set
val s1 = Set(1, 2, 3, 4, 5)
// Applying toString method
val result = s1.toString
// Display output
println(result)
}
}
輸出:
Set(5, 1, 2, 3, 4)
範例2:
// Scala program of toString()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a set
val s1 = Set(41, 12, 23, 43, 1, 72)
// Applying toString method
val result = s1.toString
// Display output
println(result)
}
}
輸出:
Set(1, 41, 12, 72, 43, 23)
相關用法
- Scala Int toString()用法及代碼示例
- Scala Map toString()用法及代碼示例
- Scala Iterator toString()用法及代碼示例
- Scala SortedSet toString()用法及代碼示例
- Scala TreeSet toString()用法及代碼示例
- Scala Float toString()用法及代碼示例
- Scala SortedMap toString()用法及代碼示例
- Scala Stack toString()用法及代碼示例
- Scala Queue toString()用法及代碼示例
- Scala String toString()用法及代碼示例
- Scala Char toString()用法及代碼示例
- Scala Set ++()用法及代碼示例
- Scala map()用法及代碼示例
注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Scala Set toString() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。