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 trialChaltu Oli
4,915 PointsI'm stuck on this
Can't figure it out!!
import com.example.BlogPost;
public class TypeCastChecker {
/***************
I have provided 2 hints for this challenge.
Change `false` to `true` in one line below, then click the "Check work" button to see the hint.
NOTE: You must set all the hints to false to complete the exercise.
****************/
public static boolean HINT_1_ENABLED = false;
public static boolean HINT_2_ENABLED = true;
public static String getTitleFromObject(Object obj) {
// Fix this result variable to be the correct string.
String result = (String) obj;
return result;
}
}
1 Answer
Steve Hunter
57,712 PointsHi there,
You're nearly there but you need to check if
the obj
is a String
before casting it as one.
Use instanceof
to create a boolean result for an if
conditional statement. You want to see if obj
is an instanceof
a String
.
If it is, cast obj
to be a String
and return that object. (Use one line for this!)
Make sense?
Steve.