toString()方法用於返回隊列對象的字符串表示形式。
函數定義: def toString(): String
返回類型: It returns a string representation of the queue object.
範例1:
// Scala program of toString()
// method
// Import Queue
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a queue
val q1 = Queue(1, 2, 3, 4, 5)
// Print the queue
println(q1)
// Applying toString method
val result = q1.toString
// Display output
print("String representation of the queue object: " + result)
}
}
輸出:
Queue(1, 2, 3, 4, 5) String representation of the queue object: Queue(1, 2, 3, 4, 5)
範例2:
// Scala program of toString()
// method
// Import Queue
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a queue
val q1 = Queue(5, 2, 13, 7, 1, 3)
// Print the queue
println(q1)
// Applying toString method
val result = q1.toString
// Display output
print("String representation of the queue object: " + result)
}
}
輸出:
Queue(5, 2, 13, 7, 1, 3) String representation of the queue object: Queue(5, 2, 13, 7, 1, 3)
相關用法
- Scala Map toString()用法及代碼示例
- Scala Set toString()用法及代碼示例
- Scala Int toString()用法及代碼示例
- Scala SortedSet toString()用法及代碼示例
- Scala TreeSet toString()用法及代碼示例
- Scala Stack toString()用法及代碼示例
- Scala String toString()用法及代碼示例
- Scala Float toString()用法及代碼示例
- Scala SortedMap toString()用法及代碼示例
- Scala Iterator toString()用法及代碼示例
- Scala Char toString()用法及代碼示例
- Scala Queue take()用法及代碼示例
- Scala Queue min()用法及代碼示例
- Scala Queue contains()用法及代碼示例
注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Scala Queue toString() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。