Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Sebastian Hoffmann
1,601 PointsInitializing
Hi there,
I don't understand why we have to initialize the inventory variable in the protocol "VendingMachine".
Could anybody explain that to me?
Thank you very much for your help!
1 Answer

anglin
8,105 PointsHi, I think Pasan explains this later on in the beginning of the next section (in the 2nd video titled "Type Methods").
Technically, you don't have to have an init there since it's not required. But... idea-wise, we want to have an init there to prevent creating a struct that has no data inside it because it wouldn't make sense to have a vending machine with no items. So by creating an init method there, it forces you to include an inventory along with it, right when it is created.