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 trialmoadw
Courses Plus Student 273 Pointswhat is the different to declare a function with int or void?
On the previous functions tutorial we declared the function with int, but now we are declaring it with void. What is the difference? I think those little new keywords we find on every course must be explained by the instructor.
2 Answers
Ron McCranie
7,837 PointsThat's the return type. You're telling Objective-C what type of value to expect back from the function. Int
means to expect an integer, void
means to NOT expect anything to be returned.
hanna
19,176 PointsHello moadw,
void function should not return a value, otherwise there will be an error, and the program won't work.
moadw
Courses Plus Student 273 Pointsmoadw
Courses Plus Student 273 PointsAlthough nothing is expected, is it possible to return something from a void function?