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 trial

Java

why do we not need to create instance to call the isEmpty() method?

if(!isEmpty()) I dont understand how we can call the method without creating an instance for it. We did not even set the method to be Static where it would be then accessible to the whole class. Thanks to whomever answers!

Hello Siddesh,

Which video are you watching? Please link to it, as well as the minutes in you've watched. This will help us help you! Thanks :)

https://teamtreehouse.com/library/incrementing-and-decrementing

It was Java track. Incrementing and Decrementing. 5:36. Thanks Alex :)

1 Answer

The isEmpty() method is being called from within the class it was made, so you don't have to create an instance. If you define a method within a class, it can access other methods from the class with no problem. For example...

class HelloWorld {
    public void hello() {
        System.out.println("hello");
    }
    public void world() {
        System.out.println("world");
    }
    public void helloWorld() {
        hello();
        world();
    }
}