-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scoping / shadowing in if blocks #6872
Comments
The rules are fairly well laid out in the manual section on scoping. The other thing that's going on here is that the order of the assignment doesn't matter. Any assignment creates a new local variable which is inherited by all its nested inner scopes both before and after the actual assignment unless that variable is explicitly declared global (or local within an inner scope). In fact, you could put the assignment The manual has some examples about why this is a nice thing, but the first time I ran into it, I found it surprising, too. See also #4645. |
Thanks for the explanation. So I guess what I should have asked is: "why don't |
I can't speak to if it ever was that way or why it changed, but I can say that I've found I prefer it this way. It still gives me pause when I depend upon it, but then I'm grateful that I didn't need to explicitly write Another reason may be that the It is interesting, though, and I think pretty unique… are there any other languages that create new scopes in |
As far as I can recall, if has never introduced a scope block in Julia. I'm not sure about other languages. |
Didn't they? I still instinctively write code like:
|
I don't think so, but @JeffBezanson will remember. |
Yes @nolta I do the same, so there must be something to it. |
The first time I encountered this, I did RTFM, and I thought, "This is perfectly self-consistent and is also going to lead to numerous programmer errors." The order-independent shadowing (presumably) enables compile-time optimization but clashes with the (arguably dangerous) expectation of causality many of us bring from long experience with languages in which imperative is synonymous with immediate. I admit I don't have a better idea, but I personally try to avoid binding to outer scope as much as practical. |
I have the same reaction as Stefan; I don't think I question whether the "strict imperative" interpretation is really more intuitive:
I contend that it's highly debatable whether those behaviors are better than what we do. I don't think our scoping is just a hack to make the compiler's life easier; I think it makes variable scope more robust and predictable. |
FWIW, also in python a variable in a function will be visible in its whole On Sat, May 17, 2014 at 7:11 PM, Jeff Bezanson [email protected]:
|
@JeffBezanson - Although you didn't call me out by name, I hope it was clear from my note that I was not suggesting that Julia scoping is a hack of convenience. I was serious about the scoping being potentially advantageous for optimization over whole-function scope.And as I said, I don;t have a better idea. I do know from having implemented a few commercial DSLs (i.e. with paying customers) with different scope semantics that this choice (which @toivoh points out is not new) actually does surprise a surprising number of people. (This matters when you're supporting a commercial product, as it correlates strongly with the frequency of support calls. ) To be clear, I'm not advocating for a change. As I said before, the rule is perfectly consistent and clearly documented. But like any design choice it has consequences and as I said I don't have any better advice except the old saws that make it hard for errors to hide: avoid globals; use descriptive names; keep functions short. |
I don't think you want to create new scope blocks in an
without having to explicitly declare |
Agree. Creating new scope for "if" would be just weird. I mean, where would
|
The following code does not work:
The reason is that the assignment
f = 0
in theelse
block shadows the functionf
. This seems counterintuitive to me -- I would have expected that local variables created in theelse
block should be independent from the firstif
block. Is this the intended behavior, or a bug?A second related question: is an
if
block supposed to create a scope block? Right now, the following code works,so it seems like scope blocks are not being created, which is surprising. I found an old post on the mailing list which suggests that it should:
https://groups.google.com/forum/#!searchin/julia-dev/if$20block$20scope/julia-dev/x5PomhH_DsU/XU-VHHdyjXoJ
Could someone clarify the rules? Thanks.
The text was updated successfully, but these errors were encountered: