如果队列未满,则BlockingQueue接口的put(E e)方法将作为参数传递给该方法的元素插入此BlockingQueue的尾部。如果队列已满,则此方法将等待空间变为可用,并且在空间可用之后,它将元素插入到BlockingQueue中。
用法:
public void put(E e) throws InterruptedException
参数:此方法采用强制性参数e,该参数是要插入LinkedBlockingQueue中的元素。
返回值:该方法不返回任何内容。
异常:此方法引发以下异常:
- InterruptedException–在等待队列可用时发生中断
- NullPointerException –如果传递给方法的元素为null
注意:BlockingQueue的put()方法已从Java中的Queue类继承。
以下示例程序旨在说明BlockingQueue类的put(E e)方法:
示例1:
// Java Program Demonstrate put(E e)
// method of BlockingQueue
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.BlockingQueue;
public class GFG {
public static void main(String[] args)
throws InterruptedException
{
// define capacity of BlockingQueue
int capacityOfQueue = 4;
// create object of BlockingQueue
BlockingQueue<String> BQ
= new LinkedBlockingQueue<String>(capacityOfQueue);
// Add element usin put() method
BQ.put("Karan");
BQ.put("Suraj");
BQ.put("Harsh");
BQ.put("Rahul");
// print elements of queue
System.out.println("Items in Queue are " + BQ);
}
}
输出:
Items in Queue are [Karan, Suraj, Harsh, Rahul]
示例2:
// Java Program Demonstrate put()
// method of BlockingQueue
import java.util.Iterator;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.BlockingQueue;
public class GFG {
public void PutDemo() throws InterruptedException
{
// define capacity of BlockingQueue
int capacityOfQueue = 5;
// create object of BlockingQueue
BlockingQueue<Employee> BQ
= new LinkedBlockingQueue<Employee>(capacityOfQueue);
// Add element to BlockingQueue
Employee emp1 = new Employee("Ranjeet", "Tester", "29000", 27);
Employee emp2 = new Employee("Sanjeet", "Manager", "98000", 34);
Employee emp3 = new Employee("Karan", "Analyst", "44000", 30);
// Add Employee Objects to BQ
// Using put(E e)
BQ.put(emp1);
BQ.put(emp2);
BQ.put(emp3);
System.out.println("Details of Employees:");
// print details of BQ
Iterator itr = BQ.iterator();
while (itr.hasNext())
System.out.println(itr.next());
}
// create an Employee Object with name,
// position, salary and age as attributes
public class Employee {
public String name;
public String position;
public String salary;
public int Age;
Employee(String name, String position,
String salary, int age)
{
this.name = name;
this.position = position;
this.salary = salary;
this.Age = age;
}
@Override
public String toString()
{
return "Employee [name=" + name + ", position="
+ position + ", salary=" + salary
+ ", Age=" + Age + "]";
}
}
// Main Method
public static void main(String[] args)
{
GFG gfg = new GFG();
try {
gfg.PutDemo();
}
catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
输出:
Details of Employees: Employee [name=Ranjeet, position=Tester, salary=29000, Age=27] Employee [name=Sanjeet, position=Manager, salary=98000, Age=34] Employee [name=Karan, position=Analyst, salary=44000, Age=30]
示例3:
// Java Program Demonstrate put(E e)
// method of BlockingQueue
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.BlockingQueue;
public class GFG {
public static void main(String[] args)
throws InterruptedException
{
// define capacity of BlockingQueue
int capacityOfQueue = 4;
// create object of BlockingQueue
BlockingQueue<String> BQ
= new LinkedBlockingQueue<String>(capacityOfQueue);
// try to put null value in put method
try {
BQ.put(null);
}
catch (Exception e) {
// print error details
System.out.println("Exception: " + e);
}
}
}
输出:
Exception: java.lang.NullPointerException
参考: https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/BlockingQueue.html#put(E)
相关用法
- Java BlockingQueue contains()用法及代码示例
- Java BlockingQueue take()用法及代码示例
- Java BlockingQueue remove()用法及代码示例
- Java BlockingQueue drainTo()用法及代码示例
- Java BlockingQueue remainingCapacity()用法及代码示例
- Java BlockingQueue poll()用法及代码示例
- Java BlockingQueue offer()用法及代码示例
- Java BlockingQueue add()用法及代码示例
- Java Java lang.Long.builtcount()用法及代码示例
- Java Java lang.Long.reverse()用法及代码示例
- Java Java lang.Long.lowestOneBit()用法及代码示例
- Java Java lang.Long.numberOfTrailingZeros()用法及代码示例
- Java Java lang.Long.byteValue()用法及代码示例
- Java Java.util.Collections.disjoint()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 BlockingQueue put() method in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。