- 相關(guān)推薦
javascript面向?qū)ο笾械膶?duì)象怎么理解
javacript面向?qū)ο蟪绦蛟O(shè)計(jì)中,可以理解為一切都是對(duì)象。實(shí)例代碼如下:
復(fù)制代碼 代碼如下:
function Cat(){
}
var cat1 = new Cat();//創(chuàng)建類實(shí)例
cat1.name = "小狗";
cat1.age = 4;
cat1.color="白色";
document.write(cat1.name);
document.writeln(cat1.constructor);//實(shí)例化后對(duì)象,是對(duì)象
document.writeln(typeof(cat1)+"
");
document.writeln(Cat.constructor);//原型對(duì)象本身也是對(duì)象
document.writeln(typeof Cat+"
");
var b="hello";//字符串也是對(duì)象
document.writeln(b.constructor);//輸出它的構(gòu)造函數(shù)
document.writeln(typeof b+"
");
var c=123;//數(shù)值也是對(duì)象
document.writeln(c.constructor);
document.writeln(typeof c+"
");
判斷一個(gè)實(shí)例化對(duì)象是不是某個(gè)原型對(duì)象類型
復(fù)制代碼 代碼如下:if(cat1 instanceof Cat){//與php的判斷方法相同
window.alert("ok");
}
希望本文所述對(duì)大家的javascript程序設(shè)計(jì)有所幫助。
【javascript面向?qū)ο笾械膶?duì)象怎么理解】相關(guān)文章:
Word快速提取對(duì)象文件技巧03-16
2024年公共營(yíng)養(yǎng)師報(bào)考對(duì)象及條件09-05
javascript跨域訪問的方法07-19
演講中的故事應(yīng)該怎么講02-11
CAD中怎么設(shè)置標(biāo)注樣式與比例07-17
EXCEL表格中數(shù)據(jù)透視表怎么用05-24
在excel表格中怎么設(shè)置水平垂直居中對(duì)齊?04-13
CAD中怎么等分一條直線或曲線07-17