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 trialT K
1,875 Pointsdispenser.load(); symbol not found
public class Example {
public static void main(String[] args) {
// Your amazing code goes here...
System.out.println("We are making a new Pez Dispenser.");
PezDispenser dispenser = new PezDispenser("Yoda");
System.out.printf("The dispenser character is %s\n",
dispenser.getCharacterName());
if(dispenser.isEmpty()){
System.out.println("It is currently empty");
}
System.out.println("Loading....");
\\the prob exists right here....does not identify the symbol
dispenser.load();
if(!dispenser.isEmpty()){
System.out.println("It is no longer empty");
}
}
}
1 Answer
Rob Bridges
Full Stack JavaScript Techdegree Graduate 35,467 PointsHello, it looks like you actually didn't define the method, so the compiler is telling that it can't find it, I can see that you "System.out.println("Loading...")" but you don't have this inside a method like your isEmtpy() method.
Try something like.
public void load() {
System.out.println("Loading...")
}
This should define the method and allow you to call it.
Thanks hope this helps.