2009年2月2日

取用物件成員

用物件寫程式 | 取用成員 | 繼承 | set, get
. [ ] | in | instanceof | for each(in) | for(in) | with
.   [   ]

取用物件成員的方法,可用 . 或 []。使用 [] 的好處是,成員名稱是用字串來表達,而在程序執行中,字串可以變更。

  • 程式用法:

    <script type='text/javascript'>
    function human(name, gender, age)
    {
     this.name=name;
     this.gender=gender;
     this.age=age;
     this.get=function () { return this.name+' / '+this.gender+' / '+this.age+'歲';}
    }
    function teacher(name, gender, age, department)
    {
     this.person=human;
     this.person(name, gender, age);
     this.department=department;
     this.list=print;
    }
    function print()
    {
     document.write( this.get()+' / '+this.department );
    }
    Ma=new teacher('馬友友','男',55,'音樂系');
    document.write(Ma.name+' / '+Ma['department'])
    </script>

  • 執行結果:

    馬友友 / 音樂系

in

in:用來檢查一個物件實體或物件型態中,是否含有指定的成員。語法是:

成員 in 物件

成員可用字串指定成員的名稱,或用整數的陣列指標;如果成員存在物件中,得到 true,否則為 false。

  • 程式用法:

    <script type='text/javascript'>
    document.write( 'list' in Ma );
    </script>

  • 執行結果:

    true

instanceof

用來檢查一個物件實體是否是屬於指定的物件型態,肯定時為 true,否則為 false。其語法為:

實體名稱 instanceof 型態名稱

  • 程式用法:

    <script type='text/javascript'>
    document.write( Ma instanceof teacher );
    </script>

  • 執行結果:

    true

for each( in )

將物件成員的值,一一取用。for each( in ) 將物件成員的值,一次取出一個,可在迴路中使用;到最後一個成員後,迴路結束。

for each( in ) 只能在 Firefox 使用;IE, Safari, Chrome 都沒有支援。

  • 程式用法:

    <ol>
    <script type='text/javascript'>
    for each( val in Ma ) document.write('<li>'+val);
    </script>
    </ol>

  • 執行結果:

for( in )

將物件的成員名稱,一一取用。這與上述的 for each( in ) 取出成員的值,有所不同。

  • 程式用法:

    <ol>
    <script type='text/javascript'>
    for( key in Ma ) document.write('<li>'+key+' : '+Ma[key]);
    </script>
    </ol>

  • 執行結果:

    1. person : function human(name, gender, age) { this.name=name; this.gender=gender; this.age=age; this.get=function () { return this.name+' / '+this.gender+' / '+this.age+'歲';} }
    2. name : 馬友友
    3. gender : 男
    4. age : 55
    5. get : function () { return this.name+' / '+this.gender+' / '+this.age+'歲';}
    6. department : 音樂系
    7. list : function print() { document.write( this.get()+' / '+this.department ); }

with

可用來宣告常用的物件實體,可以縮短使用物件成員的字串。通常用在使用物件頻繁的區塊。使用時要注意變數名稱與成員名稱不要相同。

  • 程式用法:

    <script type='text/javascript'>
    with( Ma ) document.write( name +' 任職 '+ department );
    </script>

  • 執行結果:

    馬友友 任職 音樂系


©2008-2009 by ant2legs, All Rights Reserved. ant2legs 擁有其製作的文章,圖片與程式的著作權,所有權利保留。