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 trialMasum Bergmann
Courses Plus Student 4,129 Pointsnew ParseQuery<ParseObject>("ClassName") vs. ParseQuery.getQuery("ClassName")
Hi all!
When initializing a ParseQuery query, Ben used:
new ParseQuery<ParseObject>("ClassName")
, whereas I used:
ParseQuery.getQuery("ClassName")
, as per the Parse documentation.
Both seem to work, so what's the difference? Why should I prefer one over the other?
Thanks,
Masum
1 Answer
Ben Jakuben
Treehouse TeacherThat's an oversight on my part. Either is fine, though it's generally best to stick with the method found in official documentation. Looks like the getQuery()
method is just a convenience method that does the same thing.
And thanks for the heads up on the Code Challenge! I'll make a note to fix it to accept both. :)
Masum Bergmann
Courses Plus Student 4,129 PointsMasum Bergmann
Courses Plus Student 4,129 PointsAs a side note: the code challenge only accepts "Ben's Version" as a correct answer!