class是關鍵字,用來處理ECMAScript 2015所採用的JavaScript中class是什麼?怎麼使用?中class是什麼?怎麼使用?類,ECMAScript 2015(ekma腳本)是JavaScript中class是什麼?怎麼使用?中class是什麼?怎麼使用?的標準規格。由國際組織標準化,在Google Chrome和Internet Explorer 11及更高版本等現代瀏覽器中廣泛採用。
使用class我們可以簡單地在JavaScript中class是什麼?怎麼使用?中class是什麼?怎麼使用?中編寫物件導向的程式設計。
我們下面來看class的使用方法
基本的程式如下。在class關鍵字之後,設定在中括號中的變數和方法。
class { 设置变量和方法 }
我們來看具體的範例
程式碼如下
<!DOCTYPE html> <html> <head> <meta charset = "utf-8"> <title>JavaScript中class是什麼?怎麼使用?中class是什麼?怎麼使用?</title> </head> <body> <script> class Person { constructor(name) { this.name = name; } say() { console.log("你好," + this.name + "课程!"); } } var x = new Person("玉女心经"); x.say(); var y = new Person("独孤九剑") y.say(); </script> </body> </html>
運行結果如下
##我們來分析上述程式碼
class Person { constructor(name) { this.name = name; } say() { console.log("你好," + this.name + "课程!"); } }
var x = new Person("玉女心经"); x.say(); var y = new Person("独孤九剑") y.say();
以上是JavaScript中class是什麼?怎麼使用?的詳細內容。更多資訊請關注PHP中文網其他相關文章!