博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java PriorityQueue clear()方法与示例
阅读量:2533 次
发布时间:2019-05-11

本文共 1688 字,大约阅读时间需要 5 分钟。

PriorityQueue类clear()方法 (PriorityQueue Class clear() method)

  • clear() method is available in java.util package.

    clear()方法在java.util包中可用。

  • clear() method is used to remove all the objects from this PriorityQueue.

    clear()方法用于从此PriorityQueue中删除所有对象。

  • clear() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    clear()方法是一个非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • clear() method does not throw an exception at the time of clearing objects from the queue.

    从队列中清除对象时, clear()方法不会引发异常。

Syntax:

句法:

public void clear();

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

The return type of the method is void, it returns nothing.

该方法的返回类型为void ,不返回任何内容。

Example:

例:

// Java program to demonstrate the example // of void clear() method of // PriorityQueueimport java.util.*;public class ClearOfPriorityQueue {
public static void main(String args[]) {
// Instantiate PriorityQueue PriorityQueue < String > pq = new PriorityQueue < String > (); // By using add() method is add // the given element into priority // queue pq.add("C"); pq.add("C++"); pq.add("JAVA"); pq.add("PHP"); pq.add("ANDROID"); // Display PriorityQueue System.out.println("PriorityQueue: " + pq); // By using clear() method is to // remove all the existing elements // from this PriorityQueue pq.clear(); // Display Updated PriorityQueue System.out.println("pq.clear(): " + pq); }}

Output

输出量

PriorityQueue: [ANDROID, C, JAVA, PHP, C++]pq.clear(): []

翻译自:

转载地址:http://ynxzd.baihongyu.com/

你可能感兴趣的文章
服务器内访问laravel框架 404错误(宝塔)
查看>>
在Form_Load里面调用Focus无效
查看>>
HttpContext.GetOwinContext().Authentication 报错 解决办法
查看>>
三十七、将背景图分成多份
查看>>
SpringCloud服务提供者
查看>>
apache常用配置
查看>>
JS匿名执行函数
查看>>
关于InputStream类的available()方法
查看>>
六边形架构模式
查看>>
HAOI2007 理想的正方形 单调队列
查看>>
(原创)c#学习笔记04--流程控制04--循环03--for循环
查看>>
从控制台输入一个五位数,计算各个数位之和
查看>>
为Sublime Text 3设置优雅的字体
查看>>
Eclipse使用Jetty(转)
查看>>
vim命令收集(持续中)
查看>>
Zynq -- 启动过程
查看>>
206. Reverse Linked List(LeetCode)
查看>>
day 04 Java并发多线程
查看>>
Java定时任务调度工具Timer Quartz
查看>>
WPF,Silverlight与XAML读书笔记第三十五 - 可视化效果之图像
查看>>