aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/posts/2021-10-02/python-unbound-local-error/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'public/posts/2021-10-02/python-unbound-local-error/index.html')
-rw-r--r--public/posts/2021-10-02/python-unbound-local-error/index.html30
1 files changed, 15 insertions, 15 deletions
diff --git a/public/posts/2021-10-02/python-unbound-local-error/index.html b/public/posts/2021-10-02/python-unbound-local-error/index.html
index f3b94f3..5d06a25 100644
--- a/public/posts/2021-10-02/python-unbound-local-error/index.html
+++ b/public/posts/2021-10-02/python-unbound-local-error/index.html
@@ -57,22 +57,22 @@
</ol>
</section>
<p>
- この記事は Qiita から移植してきたものです。 元 URL:<a href="https://qiita.com/nsfisis/items/5d733703afcb35bbf399">https://qiita.com/nsfisis/items/5d733703afcb35bbf399</a>
+ この記事は Qiita から移植してきたものです。 元 URL: <a href="https://qiita.com/nsfisis/items/5d733703afcb35bbf399">https://qiita.com/nsfisis/items/5d733703afcb35bbf399</a>
</p>
-
+
<p>
<hr>
</hr>
</p>
-
+
<p>
本記事は Python 3.7.6 の動作結果を元にして書かれている。
</p>
-
+
<p>
Python でクロージャを作ろうと、次のようなコードを書いた。
</p>
-
+
<pre class="highlight" language="python" linenumbering="unnumbered"><code class="highlight"><span class="hljs-keyword">def</span> <span class="hljs-title function_">f</span>():
x = <span class="hljs-number">0</span>
<span class="hljs-keyword">def</span> <span class="hljs-title function_">g</span>():
@@ -80,21 +80,21 @@ x += <span class="hljs-number">1</span>
g()
f()</code></pre>
-
+
<p>
- 関数<code>g</code>から 関数<code>f</code>のスコープ内で定義された変数<code>x</code>を参照し、それに 1 を足そうとしている。 これを実行すると<code>x += 1</code>の箇所でエラーが発生する。
+ 関数 <code>g</code> から 関数 <code>f</code> のスコープ内で定義された変数 <code>x</code> を参照し、それに 1 を足そうとしている。 これを実行すると <code>x += 1</code> の箇所でエラーが発生する。
</p>
-
+
<blockquote>
<p>
UnboundLocalError: local variable `x&apos; referenced before assignment
</p>
</blockquote>
-
+
<p>
- local変数<code>x</code>が代入前に参照された、とある。これは、<code>f</code>の<code>x</code>を参照するのではなく、新しく別の変数を<code>g</code>内に作ってしまっているため。 前述のコードを宣言と代入を便宜上分けて書き直すと次のようになる。<code>var</code>を変数宣言のための構文として擬似的に利用している。
+ local変数 <code>x</code> が代入前に参照された、とある。これは、<code>f</code> の <code>x</code> を参照するのではなく、新しく別の変数を <code>g</code> 内に作ってしまっているため。 前述のコードを宣言と代入を便宜上分けて書き直すと次のようになる。<code>var</code> を変数宣言のための構文として擬似的に利用している。
</p>
-
+
<pre class="highlight" language="python" linenumbering="unnumbered"><code class="highlight"><span class="hljs-comment"># 注: var は正しい Python の文法ではない。上記参照のこと</span>
<span class="hljs-keyword">def</span> <span class="hljs-title function_">f</span>():
var x <span class="hljs-comment"># f の local変数 &#x27;x&#x27; を宣言</span>
@@ -105,20 +105,20 @@ var x <span class="hljs-comment"># g の local変数 &#x27;x&#x27; を宣
x += <span class="hljs-number">1</span> <span class="hljs-comment"># x に 1 を加算 (x = x + 1 の糖衣構文)</span>
<span class="hljs-comment"># 加算する前の値を参照しようとするが、まだ代入されていないためエラー</span>
g()</code></pre>
-
+
<p>
当初の意図を表現するには、次のように書けばよい。
</p>
-
+
<pre class="highlight" language="python" linenumbering="unnumbered"><code class="highlight"><span class="hljs-keyword">def</span> <span class="hljs-title function_">f</span>():
x = <span class="hljs-number">0</span>
<span class="hljs-keyword">def</span> <span class="hljs-title function_">g</span>():
<span class="hljs-keyword">nonlocal</span> x <span class="hljs-comment">## (*)</span>
x += <span class="hljs-number">1</span>
g()</code></pre>
-
+
<p>
- <code>(*)</code>のように、<code>nonlocal</code>を追加する。これにより一つ外側のスコープ (<code>g</code>の一つ外側 =<code>f</code>) で定義されている<code>x</code>を探しに行くようになる。
+ <code>(*)</code> のように、<code>nonlocal</code> を追加する。これにより一つ外側のスコープ (<code>g</code> の一つ外側 = <code>f</code>) で定義されている <code>x</code> を探しに行くようになる。
</p>
</div>
</article>