clear()方法用於刪除隊列中的所有元素。
函數定義: def clear(): Unit
返回類型: It returns an empty queue.
範例1:
// Scala program of clear()
// method
// Import Queue
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a queue
val q1 = Queue(10, 11, 12, 13, 14)
// Print the queue
println("Before clear() method: " + q1)
// Applying clear() method
q1.clear()
// Display output
print("After clear() method: " + q1)
}
}
輸出:
Before clear() method: Queue(10, 11, 12, 13, 14) After clear() method: Queue()
範例2:
// Scala program of clear()
// method
// Import Queue
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a queue
val q1 = Queue("geeks", "for", "geeks")
// Print the queue
println("Before clear() method: " + q1)
// Applying clear() method
q1.clear()
// Display output
print("After clear() method: " + q1)
}
}
輸出:
Before clear() method: Queue(geeks, for, geeks) After clear() method: Queue()
相關用法
- Scala Map clear()用法及代碼示例
- Scala Stack clear()用法及代碼示例
- Scala TreeSet clear()用法及代碼示例
- Scala Queue contains()用法及代碼示例
- Scala Queue +=()用法及代碼示例
- Scala Queue +=:()用法及代碼示例
- Scala Queue ++=()用法及代碼示例
- Scala Queue min()用法及代碼示例
- Scala Queue sum()用法及代碼示例
- Scala Queue last()用法及代碼示例
- Scala Queue take()用法及代碼示例
- Scala Queue map()用法及代碼示例
- Scala Queue max()用法及代碼示例
- Scala Queue +:()用法及代碼示例
- Scala Queue ++()用法及代碼示例
注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Scala Queue clear() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。