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

Android Build a Simple Android App with Java Improving Our Code Simple Refactoring: Using a New Class

Kareem Jeiroudi
Kareem Jeiroudi
14,984 Points

Couldn't we change the method's signature in this specific case to static?

I was wondering why you didn't make both the method as well as field static in this case. For me it doesn't make sense not to do so, because each and every FactReader object will have the same string array, it's not like the array is going to change with some object. So I'd type:

private static String[] funFacts = {...}

and the method's signature would like something like:

public static String getFact() {...}

This would also allow us to use the method using class reference (FactsBook.getFact()), instead of initializing a FactBook object in the activity, if you know what I mean. However, I'm not completely sure how big of an improvement would that be in comparison to non-static field and method. If someone has has an answer to what the difference is, please share it with community.

Santiago Serrano
Santiago Serrano
2,754 Points

I was also thinking about this, hope someone answers