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

Matthew Francis
6,967 PointsInvoking a method in a different Class
I wanted to dos something like this, but as it turns out it does not work, any ideas how to fix it?
public class HelloWorld{
public void method(){System.out.println("Hey");}
public static void main(String []args){
Test nTest = new Test();
nTest.test();
}
}
class Test{
HelloWorld nHello = new HelloWorld();
public void test{
nHello.method();
}
}
1 Answer

Jonathan Grieve
Treehouse Moderator 91,254 PointsTry making your Test class public. I'm not an expert but explicitly giving the class the public Access level modifier should make that available to any other class ans any other file.
public class Test{
HelloWorld nHello = new HelloWorld();
public void test{
nHello.method();
}
}