Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialTan Yang
13,163 PointsPlease help with call center challenge, there is an exception
Please check my code
import java.util.ArrayDeque;
import java.util.Queue;
public class CallCenter {
Queue<CustomerSupportRep> mSupportReps;
public CallCenter(Queue<CustomerSupportRep> queue) {
mSupportReps = queue;
}
public void acceptCustomer(Customer customer) {
CustomerSupportRep csr;
/********************************************
* TODO (1)
* Wait until there is an available rep in the queue.
* While there is not one available, playHoldMusic
* HINT: That while assignmentcheck loop syntax we used to
* read files seems pretty similar
********************************************
*/
csr = mSupportReps.poll();
while(csr == null){
playHoldMusic();
}
/********************************************
* TODO (2)
* After we have assigned the rep, call the
* assist method and pass in the customer
********************************************
*/
csr.assist(customer);
/********************************************
* TODO (3)
* Since the customer support rep is done with
* assisting, put them back into the queue.
********************************************
*/
mSupportReps.add(csr);
}
public void playHoldMusic() {
System.out.println("Smooooooth Operator.....");
}
}
import java.util.List;
import java.util.ArrayList;
public class CustomerSupportRep {
private String mName;
private List<Customer> mAssistedCustomers;
public CustomerSupportRep(String name) {
mName = name;
mAssistedCustomers = new ArrayList<Customer>();
}
public void assist(Customer customer) {
System.out.printf("Hello %s, my name is %s, how can I assist you.%n",
customer.getName(),
mName);
System.out.println("...");
System.out.println("Is there anything else I can help you with?");
mAssistedCustomers.add(customer);
}
public List<Customer> getAssistedCustomers() {
return mAssistedCustomers;
}
}
public class Customer {
private String mName;
public Customer(String name) {
mName = name;
}
public String getName() {
return mName;
}
}
2 Answers
Livia Galeazzi
Java Web Development Techdegree Graduate 21,083 PointsThe issue is here:
csr = mSupportReps.poll();
while(csr == null){
playHoldMusic();
}
You try to find a CSR once, then you check if it's null and play the music. But then you never attempt to find a CSR again. So the CSR will stay null forever and the customer will keep listening to that music until he gives up ;-)
You need to try assigning a CSR again every time you go through the loop. The comments give you a hint on how to do this: "That while assignmentcheck loop syntax we used to read files seems pretty similar". That was this piece of code:
String line;
while((line = reader.nextLine()) != null) {
//do something
}
Notice how the line variable is assigned a new value from inside the while condition? Try to do something like that.
Jason Poole
3,123 PointsSo the CSR will stay null forever and the customer will keep listening to that music until he gives up ;-)
Thank you for your help Livia.
... this problem (or at least the solution i gave) seems a big jump in difficulty from the previous problems given i had to use something that hasn't been taught in the course yet
Livia Galeazzi
Java Web Development Techdegree Graduate 21,083 PointsLivia Galeazzi
Java Web Development Techdegree Graduate 21,083 PointsBy the way: please do not post the same question several times.