2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

JavaScript の import された各変数 は参照変数(=エイリアス)であるという話

Last updated at Posted at 2024-11-01

JavaScript には参照変数(=エイリアス)にあたるものはあるという話

前回は arguments[n] と 対応した仮引数に 参照関係がある話でしたが、今回は esmodule に於ける export した変数は参照変数という話をします。

module を import するということ

まず、 変数 と その setter を公開します。

module.js
export let value;
export function setValue(v) {
    value = v;
}

ここでなぜ setter が必要だというと、 esmodule に於いて、 export した それぞれ は const ……つまり上書きによる元の値への反映ができないからです。

具体的にはこう

Import { value } from "./module.js";
value = 1; // -> Assignment to constant variable.

let で宣言して export しようとも それは 受け取る側では const です。
いや、そもそも function であろうと同じなので それはそう です。

Import { setValue } from "./module.js";
setValue = 2; // -> Assignment to constant variable.

ちなみにこれは dynamic import の直下のプロパティでも同様です。

const module = await imprt('./module.js');
module.value = 3; // -> Cannot assign to read only property 'value' of object '[object Module]'

本題

Import した 変数(関数も変数という扱いにつき)は 再代入禁止なのがわかったところで今回の本題、

ソースはこちら
https://gist.github.com/juner/ed21a255fac53ec03318e589b703fb41

動作するサンプルへのリンク
https://gistcdn.githack.com/juner/ed21a255fac53ec03318e589b703fb41/raw/

script.js
import{format,addMessage}from"./sub.js";
import{valueasnewValue,setValue}from"./module.js";
// #region set
{
    constname="set";
    consttype="set";
    setValueButton.addEventListener('click',()=>{
        consttime=format.format(newDate());
        constvalue=Symbol(`${time}`);
        setValue(value);
        constdataset={type,time,description: value.description};
        addMessage({name,time,dataset });
    });
}
// #endregion
// #region change 1
(async()=>{
    constname="change 1";
    consttype="change1";
    consttimeout=null;
    letoldValue;
    while(true){
        awaitnewPromise(resolve=>setTimeout(resolve,timeout));
        if(oldValue===newValue)continue;
        console.log('%o: %O',name,newValue);
        oldValue=newValue;
        consttime=format.format(newDate());
        constdataset={type,time,description: newValue.description};
        addMessage({name,time,dataset });
    }
})();
// #endregion
// #region change 2
(async()=>{
    constname="change 2";
    consttype="change2";
    consttimeout=null;
    letoldValue;
    constmodule=awaitimport('./module.js');
    while(true){
        awaitnewPromise(resolve=>setTimeout(resolve,timeout));
        if(oldValue===module.value)continue;
        console.log('%o: %O',name,module.value);
        oldValue=module.value;
        consttime=format.format(newDate());
        constdataset={type,time,description: module.value.description};
        addMessage({name,time,dataset });
    }
})();
// #endregion

注目すべきは以下

set

setValue() を呼び出して値の設定を行います。
画面でいうところの call set value ボタンの挙動のところです。

change 1

Import 経由で とってきた newValue もとい value の値を永久ループで確認します。
(参照変数の変更をチェックしています)

change 2

dynamic import 経由でとってきた module.value の値を 永久ループで確認します。
(こっちは 参照変数 ではなく プロパティの更新確認ではありますが、動作の違いが無いかの確認用です)

結果

参照変数の特性である エイリアスの機能としてちゃんとボタンを押すことでそれぞれのチェックが動作しているところがわかると思います。
(※時間出してるのはチェックタイミングの確認用で、設定された値の確認用ではありません。)

参考

インポートした値はエクスポートしたモジュールだけが変更できる

インポートした識別子は「動的バインド」と呼ばれます。エクスポートしているモジュールが再代入するとインポートしている値も変わるからです。しかしながら、当の変数をインポートしているモジュールは再代入できません。それでも、エクスポートしたオブジェクトを保持しているモジュールは、インポートしたオブジェクトを書き換えることができますし、変更した値は同じ値をインポートしているすべてのモジュールが観測できるようになっています。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?