Skip to content
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

let のスコープがおかしい #473

Open
708yamaguchi opened this issue Dec 4, 2017 · 3 comments
Open

let のスコープがおかしい #473

708yamaguchi opened this issue Dec 4, 2017 · 3 comments

Comments

@708yamaguchi
Copy link
Member

(defun test1()
  (let ((a '(0 0)))
    (setf (elt a 0) (+ 1 (elt a 0)))
    a))

以上のようにtest1関数を定義して、それを2回以上呼び出すと、下のように返り値がおかしくなります。

1.irteusgl$ test1
(1 0)
2.irteusgl$ test1
(2 0)
3.irteusgl$ test1
(3 0)

test1関数の中でローカル変数aのスコープが終わると思うので、返り値は毎回(1 0)になるのが正しいのかなぁと思いました。

一方、'(0 0) の代わりに(list 0 0)を用いた以下のtest2関数だと、

(defun test2()
  (let ((a (list 0 0)))
    (setf (elt a 0) (+ 1 (elt a 0)))
    a))

以下のようになり、予想通りの結果になりました。

17.irteusgl$ test2
(1 0)
18.irteusgl$ test2
(1 0)
19.irteusgl$ test2
(1 0)

Cc @ban-masa

@Affonso-Gui
Copy link
Member

Just for record, in this case clisp behaves as euslisp, and sbcl gives the warning

 warning: 
    Destructive function SB-KERNEL:%SETELT called on constant data.

and return (1 0) every time.

@inabajsk
Copy link
Contributor

inabajsk commented Dec 4, 2017 via email

@708yamaguchi
Copy link
Member Author

@inabajsk
早速のご返信ありがとうございます。
前のコメントで定義したtest1pfを交互に実行したところ、以下のような結果になり、test1の定義が変わっていくことが確認できました。

2.irteusgl$ pf test1
(lambda nil (let ((a '(0 0))) (setf (elt a 0) (+ 1 (elt a 0))) a))
nil
3.irteusgl$ test1
(1 0)
4.irteusgl$ pf test1
(lambda nil (let ((a '(1 0))) (setf (elt a 0) (+ 1 (elt a 0))) a))
nil
5.irteusgl$ test1
(2 0)
6.irteusgl$ pf test1
(lambda nil (let ((a '(2 0))) (setf (elt a 0) (+ 1 (elt a 0))) a))
nil
7.irteusgl$ test1
(3 0)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants