无奈睫毛

文章
6
资源
0
加入时间
2年10月17天

D. An overnight dance in discotheque

D. An overnight dance in discothequetime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputThe crowdedness of the

Java多线程——中国新说唱

Singer类实现了Runnable接口package per.runnable;public class Singer implements Runnable { private String name; public Singer(String name) { // TODO Auto-generated constructor stub this.name = n...

java--IteraterIterator(迭代器)继承

Iterator(迭代器)Iterator不是一个集合,是一种用于访问集合的方法,用于迭代集合。基本操作有next、hasNext、remove。常用方法:next:调用 it.next() 会返回迭代器的下一个元素,并且更新迭代器的状态。hasNext:调用 it.hasNext() 用于检测集合中是否还有元素。remove:调用 it.remove() 将迭代器返回的元素删除。例:迭代输出集合所有元素:package com.company;import java.util.Ar