Appendix B. six things we didn’t cover: Leftovers

image

We’ve covered a lot of ground, and you’re almost finished with this book. We’ll miss you, but before we let you go, we wouldn’t feel right about sending you out into the world without a little more preparation. We’ve saved six important topics for this appendix.

#1 Initialization statements for “if”

Here we have a saveString function that returns a single error value (or nil if there was no error). In our main function, we might store that return value in an err variable before handling it:

image

Now suppose we added another call to saveString in main that also uses an err variable. We have to remember to make the first use of err a short variable declaration, and change later uses to assignments. Otherwise, we’ll get a compile error for attempting to redeclare a variable.

image

But really, we’re only using the err variable within the if statement and its block. What if there was a way to limit the scope of the variable, so that we could treat each occurrence as a separate variable?

Remember when we first covered for loops, back in Chapter 2? We said they could include an initialization statement, where you initialize variables. Those ...

Get Head First Go now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.